From c4aad7beb596705a4c25811bdaa019f4f632e6bf Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 30 Nov 2022 15:19:31 +1300 Subject: [PATCH] Remove colon from alarm sound label --- SettingsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SettingsPage.tsx b/SettingsPage.tsx index 72026a8..c7eb1a0 100644 --- a/SettingsPage.tsx +++ b/SettingsPage.tsx @@ -190,7 +190,7 @@ export default function SettingsPage() { const soundString = useMemo(() => { if (!sound) return null const split = sound.split('/') - return ': ' + split.pop() + return split.pop() }, [sound]) const changeDarkColor = useCallback(