Skip to content

Commit

Permalink
Addressing type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LikeTheSalad committed Nov 8, 2023
1 parent d59351b commit d25851c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -129,7 +129,7 @@ export function MobileStats({
valueFormatter: (value: number) =>
Number.isNaN(value)
? NOT_AVAILABLE_LABEL
: valueFormatter(value.toFixed(1), 'ms'),
: valueFormatter(Number(value).toFixed(1), 'ms'),
trend: data?.currentPeriod?.launchTimes?.timeseries,
extra: getComparisonValueFormatter(
data?.previousPeriod.launchTimes?.value?.toFixed(1)
Expand Down

0 comments on commit d25851c

Please sign in to comment.