Skip to content

Commit

Permalink
sort a corpus
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavlenko committed Sep 27, 2024
1 parent 6581932 commit 2808b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ function App() {
<h1>Jazz Standards Corpus</h1>
{!selectedSong ? (
<ul>
{CORPUS.map((song) => (
{CORPUS.sort((a, b) => a.Title.localeCompare(b.Title)).map((song) => (
<li
key={song.filename}
style={{
Expand Down

0 comments on commit 2808b91

Please sign in to comment.