Skip to content

Commit

Permalink
fix(NotificationsManagementNetwork): participation rate
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel-bitfly committed Oct 21, 2024
1 parent d5103c1 commit 244281a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"qrCode",
"useNotificationsOverviewStore",
"useWindowSize",
"vscode"
"vscode",
"NotificationsManagementNetwork"

Check warning on line 37 in frontend/.vscode/settings.json

View workflow job for this annotation

GitHub Actions / lint and typecheck

Expected array values to be in natural ascending order. 'NotificationsManagementNetwork' should be before 'vscode'
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ watchDebounced([
], async () => {
if (!currentNetworkSettings.value) return
currentNetworkSettings.value.is_gas_above_subscribed = hasGasAbove.value
currentNetworkSettings.value.gas_above_threshold = thresholdGasAbove.value
currentNetworkSettings.value.is_gas_below_subscribed = hasGasBelow.value
currentNetworkSettings.value.is_new_reward_round_subscribed = hasNewRewardRound.value
currentNetworkSettings.value.is_participation_rate_subscribed = hasParticipationRate.value
currentNetworkSettings.value.gas_above_threshold = formatToWei(thresholdGasAbove.value, { from: 'gwei' })
currentNetworkSettings.value.gas_below_threshold = formatToWei(thresholdGasBelow.value, { from: 'gwei' })
Expand Down

0 comments on commit 244281a

Please sign in to comment.