hide note creator toast on Iris
Some checks failed
continuous-integration/drone/push Build is failing

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"] "defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"]
}, },
"defaultPreferences": { "defaultPreferences": {
"checkSigs": true, "checkSigs": true
"sentToRelayNotifications": "all"
}, },
"media": { "media": {
"bypassImgProxyError": false, "bypassImgProxyError": false,

View File

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

View File

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