Skip to content

Commit

Permalink
Fixing linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
derwebcoder committed Oct 15, 2024
1 parent 306e6f0 commit eac6a33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/common/components/TextInput/TextInput.config.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ListKeymap from "@tiptap/extension-list-keymap";
import Placeholder from "@tiptap/extension-placeholder";
import Document from "@tiptap/extension-document";
import Text from "@tiptap/extension-text";
import Paragraph from "@tiptap/extension-paragraph";
// import Document from "@tiptap/extension-document";
// import Text from "@tiptap/extension-text";
// import Paragraph from "@tiptap/extension-paragraph";
import Mention from "@tiptap/extension-mention";
import StarterKit from "@tiptap/starter-kit";

Expand Down
2 changes: 1 addition & 1 deletion src/container/SparkInput/SparkInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const SparkInput = () => {
return;
}

pip.addEventListener("pagehide", (event) => {
pip.addEventListener("pagehide", (_event) => {
setPipWindow(undefined);
});

Expand Down
2 changes: 1 addition & 1 deletion src/scripts/files/importJSONWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
type Backup,
type BackupV6,
} from "../../interfaces/Backup";
import type { PlainSpark, Spark } from "../../interfaces/Spark";
import type { PlainSpark } from "../../interfaces/Spark";
import { sparkService } from "../db/SparkService";
import { tagService } from "../db/TagService";
import { removeHash, stringToHue } from "../utils/stringUtils";
Expand Down

0 comments on commit eac6a33

Please sign in to comment.