fix: replace bug

Fixed missing fallback for old local storage saves
This commit is contained in:
Fiona Lena Urban 2025-05-06 08:21:58 +02:00
parent 8f924151da
commit c5be0b6b04

View file

@ -1 +1 @@
export const replaceComma = (value: string) => value.replace(',', '.'); export const replaceComma = (value: string | number) => `${value}`.replace(',', '.');