aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-16 17:11:59 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-16 17:11:59 -0800
commit9d1f2f094a291b8dc5ca8dc006a4f6169d6b873c (patch)
treeeedb937c6834778fdc9462f791026b2b7da2ade3 /frontend-vanilla
parenta7119658f864b9a9b2e0bad389faa0a333c551e0 (diff)
downloadneko-9d1f2f094a291b8dc5ca8dc006a4f6169d6b873c.tar.gz
neko-9d1f2f094a291b8dc5ca8dc006a4f6169d6b873c.tar.bz2
neko-9d1f2f094a291b8dc5ca8dc006a4f6169d6b873c.zip
Update frontend build artifacts and fix test lint errors
Diffstat (limited to 'frontend-vanilla')
-rw-r--r--frontend-vanilla/src/main.test.ts2
-rw-r--r--frontend-vanilla/src/regression.test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend-vanilla/src/main.test.ts b/frontend-vanilla/src/main.test.ts
index 8eb537e..da2c41c 100644
--- a/frontend-vanilla/src/main.test.ts
+++ b/frontend-vanilla/src/main.test.ts
@@ -23,7 +23,7 @@ vi.mock('./api', () => ({
// Mock IntersectionObserver as a constructor
class MockIntersectionObserver {
- constructor(callback: IntersectionObserverCallback) {
+ constructor() {
// unused
}
observe = vi.fn();
diff --git a/frontend-vanilla/src/regression.test.ts b/frontend-vanilla/src/regression.test.ts
index 2512f3f..94eb51e 100644
--- a/frontend-vanilla/src/regression.test.ts
+++ b/frontend-vanilla/src/regression.test.ts
@@ -1,7 +1,7 @@
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
import { store } from './store';
import { apiFetch } from './api';
-import { updateItem, fetchItems, renderItems } from './main';
+import { renderItems } from './main';
// Mock api
vi.mock('./api', () => ({