chore: remove unused config

This commit is contained in:
2024-01-08 11:34:36 +00:00
parent 185aca0442
commit d25b6ef5f1
3 changed files with 7 additions and 4 deletions

View File

@ -40,7 +40,6 @@
"wss://nostr.wine/": { "read": true, "write": false }, "wss://nostr.wine/": { "read": true, "write": false },
"wss://eden.nostr.land/": { "read": true, "write": false } "wss://eden.nostr.land/": { "read": true, "write": false }
}, },
"useIndexedDBEvents": false,
"alby": { "alby": {
"clientId": "pohiJjPhQR", "clientId": "pohiJjPhQR",
"clientSecret": "GAl1YKLA3FveK1gLBYok" "clientSecret": "GAl1YKLA3FveK1gLBYok"

View File

@ -41,6 +41,5 @@
"wss://eden.nostr.land/": { "read": true, "write": false }, "wss://eden.nostr.land/": { "read": true, "write": false },
"wss://relay.nostr.band/": { "read": true, "write": true }, "wss://relay.nostr.band/": { "read": true, "write": true },
"wss://relay.damus.io/": { "read": true, "write": true } "wss://relay.damus.io/": { "read": true, "write": true }
}, }
"useIndexedDBEvents": false
} }

View File

@ -74,17 +74,22 @@ declare const CONFIG: {
communityLeaders?: { communityLeaders?: {
list: string; list: string;
}; };
// Filter urls from nav sidebar // Filter urls from nav sidebar
hideFromNavbar: Array<string>; hideFromNavbar: Array<string>;
// Limit deck to certain subscriber tier // Limit deck to certain subscriber tier
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>;
useIndexedDBEvents: boolean;
// Alby wallet oAuth config // Alby wallet oAuth config
alby?: { alby?: {
clientId: string; clientId: string;