Skip to content

Commit

Permalink
Try removing sort from helper
Browse files Browse the repository at this point in the history
Why is this even here? It shouldn’t transfer results like this.
  • Loading branch information
getdave committed May 12, 2023
1 parent 6bf6d37 commit 8cb75c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ export async function getAllBlockInserterItemTitles() {
return inserterItem.innerText;
} );
} );
return [ ...new Set( inserterItemTitles ) ].sort();
return [ ...new Set( inserterItemTitles ) ];
}

0 comments on commit 8cb75c8

Please sign in to comment.