Skip to content

Commit

Permalink
fix(frontend): fix "feels like" value formatting"
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaVls committed Dec 21, 2021
1 parent cdd1c4c commit bc8f953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Conditions/Conditions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function Conditions(): ReactElement {
},
{
id: 4,
value: current?.feels_like + " °F",
value: (current?.feels_like as number).toFixed(0) + " °F",
name: "Feels Like",
icon: "wi:thermometer",
},
Expand Down

0 comments on commit bc8f953

Please sign in to comment.