Skip to content

Commit

Permalink
chore: fix Firebase integration of CVS v3 rework
Browse files Browse the repository at this point in the history
  • Loading branch information
gre committed May 10, 2024
1 parent aedced6 commit daf69c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/ledger-live-desktop/src/renderer/actions/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ export function useCalculateCountervaluesUserSettings(): CountervaluesSettings {
() => ({
trackingPairs,
autofillGaps: true,
refreshRate: LiveConfig.getValueByKey("countervalues_refreshRate"),
refreshRate: LiveConfig.getValueByKey("config_countervalues_refreshRate"),
marketCapBatchingAfterRank: LiveConfig.getValueByKey(
"countervalues_marketCapBatchingAfterRank",
"config_countervalues_marketCapBatchingAfterRank",
),
}),
[trackingPairs],
Expand Down
4 changes: 2 additions & 2 deletions apps/ledger-live-mobile/src/actions/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ export function useUserSettings() {
() => ({
trackingPairs,
autofillGaps: true,
refreshRate: LiveConfig.getValueByKey("countervalues_refreshRate"),
refreshRate: LiveConfig.getValueByKey("config_countervalues_refreshRate"),
marketCapBatchingAfterRank: LiveConfig.getValueByKey(
"countervalues_marketCapBatchingAfterRank",
"config_countervalues_marketCapBatchingAfterRank",
),
}),
[trackingPairs],
Expand Down

0 comments on commit daf69c0

Please sign in to comment.