Revert "Timeuntil in UI (#1461)"

This reverts commit 221ff7b3af.
This commit is contained in:
Carlos Valente
2025-02-12 22:14:10 +01:00
committed by Carlos Valente
parent 649f0af2cf
commit 8ac5c0a9a2
9 changed files with 1 additions and 145 deletions
@@ -49,8 +49,6 @@ interface EventBlockProps {
isRolling: boolean;
gap: number;
isNextDay: boolean;
dayOffset: number;
totalGap: number;
actionHandler: (
action: EventItemActions,
payload?:
@@ -89,8 +87,6 @@ export default function EventBlock(props: EventBlockProps) {
isRolling,
gap,
isNextDay,
dayOffset,
totalGap,
actionHandler,
} = props;
const { selectedEventId, setSelectedEventId, clearSelectedEventId } = useEventIdSwapping();
@@ -307,9 +303,6 @@ export default function EventBlock(props: EventBlockProps) {
loaded={loaded}
playback={playback}
isRolling={isRolling}
dayOffset={dayOffset}
isPast={isPast}
totalGap={totalGap}
/>
)}
</div>