We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef4037e commit 9225e67Copy full SHA for 9225e67
src/model/remoteConfig.ts
@@ -151,6 +151,7 @@ export const DEFAULT_CONFIG: RainbowConfig = {
151
nfts_enabled: true,
152
153
trending_tokens_limit: 10,
154
+ trending_tokens_enabled: false,
155
};
156
157
export async function fetchRemoteConfig(): Promise<RainbowConfig> {
@@ -206,7 +207,8 @@ export async function fetchRemoteConfig(): Promise<RainbowConfig> {
206
207
key === 'degen_mode' ||
208
key === 'featured_results' ||
209
key === 'claimables' ||
- key === 'nfts_enabled'
210
+ key === 'nfts_enabled' ||
211
+ key === 'trending_tokens_enabled'
212
) {
213
config[key] = entry.asBoolean();
214
} else if (key === 'trending_tokens_limit') {
0 commit comments