Skip to content

Commit

Permalink
fix default slippage being stored in wrong key
Browse files Browse the repository at this point in the history
  • Loading branch information
walmat committed Feb 12, 2025
1 parent 5c83fa7 commit 98222ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/firebase/remoteConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const init = async () => {
// Ignore non BX keys
if (key.startsWith('BX_')) {
if (key === 'BX_default_slippage_bips_chainId') {
config[realKey] = JSON.parse(
config['default_slippage_bips'] = JSON.parse(
entry.asString(),
) as RainbowConfig['default_slippage_bips'];
} else if (
Expand Down

0 comments on commit 98222ac

Please sign in to comment.