Skip to content

Commit ba48239

Browse files
committed
fix lint
1 parent 46296fc commit ba48239

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pages/dashboard/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,7 @@ const Dashboard: NextPage = () => {
281281
} else if (!aIsReduceOnly && bIsReduceOnly) {
282282
return -1
283283
} else {
284-
return (
285-
sortByTier(a.tier) -
286-
sortByTier(b.tier)
287-
)
284+
return sortByTier(a.tier) - sortByTier(b.tier)
288285
}
289286
})
290287
.map((bank, i) => {

0 commit comments

Comments
 (0)