Skip to content

Commit 306adf3

Browse files
committed
fix accidental commit
1 parent 32f0426 commit 306adf3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

js/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,10 +694,9 @@ function refreshLibrary(options) {
694694

695695
if (activeSort && !searchValue) { // only sort if not searching (searching already sorts)
696696
if (["created","modified","installs","favourites"].includes(activeSort)) {
697-
visibleApps = visibleApps.sort((a,b) => {
697+
visibleApps = visibleApps.sort((a,b) =>
698698
((appSortInfo[b.id]||{})[activeSort]||0) -
699699
((appSortInfo[a.id]||{})[activeSort]||0));
700-
});
701700
} else throw new Error("Unknown sort type "+activeSort);
702701
}
703702

0 commit comments

Comments
 (0)