Skip to content

Commit

Permalink
omit string formating in convert_bg (#1414)
Browse files Browse the repository at this point in the history
fixes #1413
  • Loading branch information
mountrcg authored Jun 19, 2022
1 parent f35b4ff commit 7d53991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/determine-basal/determine-basal.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function convert_bg(value, profile)
{
if (profile.out_units === "mmol/L")
{
return round(value / 18, 1).toFixed(1);
return round(value / 18, 1);
}
else
{
Expand Down

0 comments on commit 7d53991

Please sign in to comment.