Skip to content

Commit c398869

Browse files
committed
chore: remove test files and clean up minor issues
- Delete src/test-dial.html and src/test-dial.tsx - Remove trailing blank lines in background/index.ts - Remove unused lastModified from File constructor in claude.tsx - Remove eslint-disable comment in chatgpt.ts extractor
1 parent f671d34 commit c398869

6 files changed

Lines changed: 0 additions & 121 deletions

File tree

src/background/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,3 @@ async function handleMessage(
153153
throw new Error(`Unknown message type: ${(message as any).type}`);
154154
}
155155
}
156-
157-

src/content-scripts/claude.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ function attachViaFileInput(text: string): boolean {
2020

2121
const file = new File([text], "AI_Chat_Backup_Context_Seed.txt", {
2222
type: "text/plain",
23-
lastModified: Date.now(),
2423
});
2524

2625
const dt = new DataTransfer();

src/content-scripts/perplexity.tsx

Lines changed: 0 additions & 55 deletions
This file was deleted.

src/extractors/chatgpt.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ export const chatgptExtractor: Extractor = {
146146
let offset = 0;
147147
const limit = 100;
148148

149-
// eslint-disable-next-line no-constant-condition
150149
while (true) {
151150
const page = await apiFetch<RawConvList>(
152151
`/conversations?offset=${offset}&limit=${limit}&order=updated`

src/test-dial.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/test-dial.tsx

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)