We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84304c4 commit 742a15aCopy full SHA for 742a15a
1 file changed
components/top-list.tsx
@@ -39,6 +39,7 @@ export function TopList({ userResults }: Props) {
39
{data.titleUrl ? (
40
<a
41
href={data.titleUrl}
42
+ title="Open on GitHub"
43
target="_blank"
44
rel="noopener noreferrer"
45
className="text-primary hover:underline"
@@ -69,7 +70,7 @@ export function TopList({ userResults }: Props) {
69
70
</div>
71
<div className="text-right">
72
<p className="text-sm font-semibold text-foreground">
- {(data.score ?? 0).toFixed(2)}
73
+ {data.score ?? 0}
74
</p>
75
<p className="text-[11px] text-muted-foreground">
76
{t("comparsion.score")}
0 commit comments