From 724f1b0456a05af3996fbee6f75ebd3f23d3b58e Mon Sep 17 00:00:00 2001 From: qiuchenfan <2035024011@qq.com> Date: Fri, 14 Nov 2025 17:34:57 +0800 Subject: [PATCH] sec --- 1114/app/lib/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1114/app/lib/utils.ts b/1114/app/lib/utils.ts index a997239..33bc418 100644 --- a/1114/app/lib/utils.ts +++ b/1114/app/lib/utils.ts @@ -12,7 +12,7 @@ export const formatTemperature = ( ): string => { const value = unit === 'fahrenheit' ? (temp * 9) / 5 + 32 : temp; const symbol = unit === 'fahrenheit' ? '°F' : '°C'; - return ${Math.round(value)}${symbol}; + return '${Math.round(value)}${symbol}'; };