Remove colon from alarm sound label

This commit is contained in:
Brandon Presley 2022-11-30 15:19:31 +13:00
parent 51b2f9396f
commit c4aad7beb5
1 changed files with 1 additions and 1 deletions

View File

@ -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(