aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-12-09 22:12:39 -0800
committerFuwn <[email protected]>2023-12-09 22:12:39 -0800
commit2c23c2e23af8a64b0247f8e996ada57e282ee42e (patch)
tree49c66cc9b3d8550ee7c5c11d76925f613ac093de /src/stores
parentfeat(settings): option disable panels (diff)
downloaddue.moe-2c23c2e23af8a64b0247f8e996ada57e282ee42e.tar.xz
due.moe-2c23c2e23af8a64b0247f8e996ada57e282ee42e.zip
fix: eslint lints
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 351ff21c..ca081058 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -25,7 +25,8 @@ export interface Settings {
disableManga: boolean;
disableAnime: boolean;
disableUpcomingAnime: boolean;
- [key: string]: unknown;
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ [key: string]: any;
}
const defaultSettings: Settings = {