Skip to content

Commit

Permalink
fix: set slot viz update interval to chain config
Browse files Browse the repository at this point in the history
  • Loading branch information
LuccaBitfly committed Dec 19, 2024
1 parent 75f487e commit 8ded042
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/components/dashboard/ValidatorSlotViz.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ const {
const { networkInfo } = useNetworkStore()
const selectedGroups = ref<number[]>([])
const { secondsPerSlot = 12 } = networkInfo.value
const {
resetTick, tick,
} = useInterval(12)
} = useInterval(secondsPerSlot)
const {
refreshSlotViz, slotViz,
Expand Down

0 comments on commit 8ded042

Please sign in to comment.