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}'; };