diff --git a/frontend/components/dashboard/ValidatorSlotViz.vue b/frontend/components/dashboard/ValidatorSlotViz.vue index fb3bc0180..e593b62c0 100644 --- a/frontend/components/dashboard/ValidatorSlotViz.vue +++ b/frontend/components/dashboard/ValidatorSlotViz.vue @@ -11,9 +11,10 @@ const { const { networkInfo } = useNetworkStore() const selectedGroups = ref([]) +const tickInterval = networkInfo.value.secondsPerSlot ? networkInfo.value.secondsPerSlot : 12 const { resetTick, tick, -} = useInterval(12) +} = useInterval(tickInterval) const { refreshSlotViz, slotViz,