Skip to content

Commit c3118e2

Browse files
nearestnaborsclaude
andcommitted
Fix merge issues: add replied_to to clearState, exclude tests from tsc
- Add replied_to field to clearState() function - Exclude src/__tests__ from tsconfig (bun handles test compilation) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 02b69b1 commit c3118e2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/state/manager.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ export function clearState(): void {
290290
cachedState = {
291291
x_username: null,
292292
dismissed: {},
293+
replied_to: [],
293294
vips: [],
294295
last_checked: null,
295296
};

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"noFallthroughCasesInSwitch": true
2222
},
2323
"include": ["src/**/*"],
24-
"exclude": ["node_modules", "dist", "ui-apps"]
24+
"exclude": ["node_modules", "dist", "ui-apps", "src/__tests__"]
2525
}

0 commit comments

Comments
 (0)