From 613da591f7d131edabe6575a2f4a05817ee2df78 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sun, 16 Feb 2025 11:56:28 -0600 Subject: [PATCH] worklet stuff --- components/Global/helpers/time-codes.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/Global/helpers/time-codes.tsx b/components/Global/helpers/time-codes.tsx index abf0f470..1e27a1aa 100644 --- a/components/Global/helpers/time-codes.tsx +++ b/components/Global/helpers/time-codes.tsx @@ -38,10 +38,8 @@ function calculateRunTimeFromSeconds(seconds: number) : string { } function calculateRunTimeFromTicks(runTimeTicks: number) : string { - - + 'worklet'; const runTimeTotalSeconds = convertRunTimeTicksToSeconds(runTimeTicks); - return calculateRunTimeFromSeconds(runTimeTotalSeconds); }