diff --git a/src/features/Navigation/EpochSlider.tsx b/src/features/Navigation/EpochSlider.tsx
index b8f42769..26c580ed 100644
--- a/src/features/Navigation/EpochSlider.tsx
+++ b/src/features/Navigation/EpochSlider.tsx
@@ -301,6 +301,8 @@ function SliderEpochProgress({
const MSliderEpochProgress = memo(SliderEpochProgress);
function SliderThumbTooltip({ isOpen }: { isOpen: boolean }) {
+ const slotOverride = useAtomValue(slotOverrideAtom);
+
const { showNav } = useSlotsNavigation();
const { refs, elements, floatingStyles, update } = useFloating({
placement: "right",
@@ -328,31 +330,23 @@ function SliderThumbTooltip({ isOpen }: { isOpen: boolean }) {
})}
/>
-
-
-
+ {slotOverride}
+
>
);
}
-function SlotOverrideText() {
- const slotOverride = useAtomValue(slotOverrideAtom);
-
- return (
-
- {slotOverride}
-
- );
-}
-
const isFutureSlotAtom = (slot: number) =>
atom((get) => {
const currentSlot = get(currentLeaderSlotAtom);