]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/post/post-form.tsx
reset, merge issues
[lemmy-ui.git] / src / shared / components / post / post-form.tsx
index cef8e294984eff567dc839474b71cd7a49a081b9..c21a6e2b8e7c189e654f232fa3b4662f8f6cdb26 100644 (file)
@@ -18,7 +18,6 @@ import {
   archiveTodayUrl,
   capitalizeFirstLetter,
   communityToChoice,
-  debounce,
   fetchCommunities,
   getIdFromString,
   ghostArchiveUrl,
@@ -33,6 +32,7 @@ import {
   validURL,
   webArchiveUrl,
 } from "../../utils";
+import { debounce } from "../../utils/helpers/debounce";
 import { Icon, Spinner } from "../common/icon";
 import { LanguageSelect } from "../common/language-select";
 import { MarkdownTextArea } from "../common/markdown-textarea";
@@ -272,7 +272,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
             )}
             {this.state.imageDeleteUrl && (
               <button
-                className="btn btn-danger mt-2"
+                className="btn btn-danger btn-sm mt-2"
                 onClick={linkEvent(this, this.handleImageDelete)}
                 aria-label={i18n.t("delete")}
                 data-tippy-content={i18n.t("delete")}