Skip to content

Commit

Permalink
Reverse the order so the latest is at the top
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonjchen committed Dec 18, 2023
1 parent 9d71633 commit a423e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Popup/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function App() {
bNameNoExt.length - 3,
bNameNoExt.length
);
return aNameNoExtLast3.localeCompare(bNameNoExtLast3);
return bNameNoExtLast3.localeCompare(aNameNoExtLast3);
})
.map(([key, value]) => (
<li key={value.name}>
Expand Down

0 comments on commit a423e15

Please sign in to comment.