Skip to content

Commit

Permalink
Fix/remove stability.toFixed(2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishiko732 committed Apr 18, 2024
1 parent ca5a41f commit 89e9f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/schedule/DSR.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function DSRDisplay() {
return DSR && !open && currentType === State.Review ? (
<div className="flex justify-center opacity-15 flex-col text-left mx-auto">
<div>{`D : ${DSR.D.toFixed(2)}`}</div>
<div>{`S : ${DSR.S.toFixed(2)}`}</div>
<div>{`S : ${DSR.S}`}</div>
<div>{`R : ${DSR.R}`}</div>
</div>
) : null
Expand Down

1 comment on commit 89e9f8e

@vercel
Copy link

@vercel vercel bot commented on 89e9f8e Apr 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.