hide note creator toast on Iris

This commit is contained in:
Martti Malmi 2023-12-18 09:59:11 +02:00
parent ffda31895a
commit 722a3a1a0e
3 changed files with 3 additions and 4 deletions

View File

@ -22,8 +22,7 @@
"defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"]
},
"defaultPreferences": {
"checkSigs": true,
"sentToRelayNotifications": "all"
"checkSigs": true
},
"media": {
"bypassImgProxyError": false,

View File

@ -29,6 +29,7 @@
"bypassImgProxyError": true,
"preferLargeMedia": true
},
"noteCreatorToast": false,
"hideFromNavbar": [],
"eventLinkPrefix": "note",
"profileLinkPrefix": "npub",

View File

@ -60,7 +60,6 @@ declare const CONFIG: {
};
defaultPreferences: {
checkSigs: boolean;
sentToRelayNotifications: "none" | "all" | "failures";
};
signUp: {
moderation: boolean;
@ -76,7 +75,7 @@ declare const CONFIG: {
deckSubKind?: number;
showDeck?: boolean;
// Create toast notifications when publishing notes
noteCreatorToast?: boolean;
noteCreatorToast: boolean;
eventLinkPrefix: NostrPrefix;
profileLinkPrefix: NostrPrefix;
defaultRelays: Record<string, RelaySettings>;