chore: remove unused config

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

View File

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

View File

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

View File

@ -74,17 +74,22 @@ declare const CONFIG: {
communityLeaders?: {
list: string;
};
// Filter urls from nav sidebar
hideFromNavbar: Array<string>;
// Limit deck to certain subscriber tier
deckSubKind?: number;
showDeck?: boolean;
// Create toast notifications when publishing notes
noteCreatorToast: boolean;
eventLinkPrefix: NostrPrefix;
profileLinkPrefix: NostrPrefix;
defaultRelays: Record<string, RelaySettings>;
useIndexedDBEvents: boolean;
// Alby wallet oAuth config
alby?: {
clientId: string;