Skip to content

Commit 558e70f

Browse files
committed
fix arrow directions
1 parent b8d2169 commit 558e70f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/routes/stats/npm/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1965,9 +1965,9 @@ function RouteComponent() {
19651965
>
19661966
<div className="inline-flex items-center gap-1">
19671967
{stat!.growth > 0 ? (
1968-
<MdArrowDownward />
1969-
) : (
19701968
<MdArrowUpward />
1969+
) : (
1970+
<MdArrowDownward />
19711971
)}
19721972
{formatNumber(Math.abs(stat!.growth))}
19731973
</div>
@@ -1983,9 +1983,9 @@ function RouteComponent() {
19831983
>
19841984
<div className="inline-flex items-center gap-1">
19851985
{stat!.growthPercentage > 0 ? (
1986-
<MdArrowDownward />
1987-
) : (
19881986
<MdArrowUpward />
1987+
) : (
1988+
<MdArrowDownward />
19891989
)}
19901990
{Math.abs(stat!.growthPercentage).toFixed(1)}%
19911991
</div>

0 commit comments

Comments
 (0)