Skip to content

Commit

Permalink
cleanup: score has toPrecision(4)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker committed Oct 3, 2024
1 parent 8170839 commit a8ac997
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,7 @@ export const RecommendationsTablePage = () => {
accessorKey: "top_score",
header: "Top Score",
cell(props) {
return (
<>
{props.getValue<number>()}
</>
);
return <>{props.getValue<number>().toPrecision(4)}</>;
},
},
{
Expand Down

0 comments on commit a8ac997

Please sign in to comment.