rm CONFIG.checkSigs (default always true)

This commit is contained in:
Martti Malmi 2023-12-18 10:04:32 +02:00
parent 722a3a1a0e
commit 8aeda3f7a1
4 changed files with 1 additions and 11 deletions

View File

@ -21,9 +21,6 @@
"moderation": true,
"defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"]
},
"defaultPreferences": {
"checkSigs": true
},
"media": {
"bypassImgProxyError": false,
"preferLargeMedia": true

View File

@ -21,10 +21,6 @@
"moderation": false,
"defaultFollows": ["npub1wnwwcv0a8wx0m9stck34ajlwhzuua68ts8mw3kjvspn42dcfyjxs4n95l8"]
},
"defaultPreferences": {
"checkSigs": true,
"sentToRelayNotifications": "none"
},
"media": {
"bypassImgProxyError": true,
"preferLargeMedia": true

View File

@ -58,9 +58,6 @@ declare const CONFIG: {
deck: boolean;
zapPool: boolean;
};
defaultPreferences: {
checkSigs: boolean;
};
signUp: {
moderation: boolean;
defaultFollows: Array<string>;

View File

@ -114,6 +114,6 @@ export const DefaultPreferences = {
telemetry: true,
showBadges: false,
showStatus: true,
checkSigs: CONFIG.defaultPreferences.checkSigs,
checkSigs: true,
autoTranslate: true,
} as UserPreferences;