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
See: BEDS-94
  • Loading branch information
LuccaBitfly committed Dec 19, 2024
1 parent 75f487e commit c517373
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 tickInterval = networkInfo.value.secondsPerSlot ? networkInfo.value.secondsPerSlot : 12
const {
resetTick, tick,
} = useInterval(12)
} = useInterval(tickInterval)
const {
refreshSlotViz, slotViz,
Expand Down

0 comments on commit c517373

Please sign in to comment.