From b8dc4fa85bdc9856b1002efefa64dea99029ece3 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sun, 16 Feb 2025 18:45:31 -0600 Subject: [PATCH] idk --- components/Global/helpers/time-codes.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Global/helpers/time-codes.tsx b/components/Global/helpers/time-codes.tsx index 31d3fc6d..f030f44e 100644 --- a/components/Global/helpers/time-codes.tsx +++ b/components/Global/helpers/time-codes.tsx @@ -22,7 +22,7 @@ export function RunTimeTicks({ children } : { children: number | null | undefine runOnRuntime(backgroundRuntime, (ticks : number) => { 'worklet'; - time.set(calculateRunTimeFromTicks(ticks)) + time.value = calculateRunTimeFromTicks(ticks) })(children); return ( @@ -30,7 +30,7 @@ export function RunTimeTicks({ children } : { children: number | null | undefine style={{display: "block"}} color="$borderColor" > - { time.value } + { time.get() } ) }