From 935175120ac9ecaef0caab9d46d6f66398fef2c2 Mon Sep 17 00:00:00 2001 From: yougotwill Date: Tue, 6 Aug 2024 14:47:28 +1000 Subject: [PATCH] fix: make sure when using pxValueToNumber we pass valid numbers --- ts/themes/globals.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ts/themes/globals.tsx b/ts/themes/globals.tsx index 42a92ace8..40c3e8f56 100644 --- a/ts/themes/globals.tsx +++ b/ts/themes/globals.tsx @@ -8,7 +8,11 @@ function setDuration(duration: number | string) { } export function pxValueToNumber(value: string) { - return Number(value.replace('px', '')); + const numberValue = Number(value.replace('px', '')); + if (Number.isNaN(numberValue)) { + throw new Error('Invalid number value'); + } + return numberValue; } // These variables are independent of the current theme