mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-09 06:33:03 -04:00
feat(settings): disable warning forever (#58)
* add disable warning forever for thororen * Update PluginModal.tsx * Update index.tsx
This commit is contained in:
parent
5e39370fac
commit
b6a0659965
3 changed files with 82 additions and 41 deletions
|
@ -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: {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue