feat(settings): disable warning forever (#58)

* add disable warning forever for thororen

* Update PluginModal.tsx

* Update index.tsx
This commit is contained in:
Creation's 2024-10-15 13:03:48 -04:00 committed by GitHub
parent 5e39370fac
commit b6a0659965
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 82 additions and 41 deletions

View file

@ -76,6 +76,8 @@ export interface Settings {
settingsSyncVersion: number;
};
ignoreResetWarning: boolean;
userCssVars: {
[themeId: string]: {
[varName: string]: string;
@ -113,6 +115,8 @@ const DefaultSettings: Settings = {
settingsSyncVersion: 0
},
ignoreResetWarning: false,
userCssVars: {}
};