Skip to content

Commit

Permalink
smallFix
Browse files Browse the repository at this point in the history
  • Loading branch information
ircfspace committed Mar 2, 2024
1 parent 0214bb2 commit fac207f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"orientation": "portrait",
"scope": "/",
"short_name": "kScanner",
"start_url": "/?v1.0.6",
"start_url": "/?v1.0.7",
"background_color": "#f28119",
"theme_color": "#ffffff",
"categories": ["utilities"],
"id": "space.ircf.scanner",
"bundleId": "space.ircf.scanner",
"version": "1.0.6",
"version": "1.0.7",
"icons": [
{
"src": "/img/icons/192.png",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/randomizeElements.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function randomizeElements<T>(arr: T[]) {
return [...arr].sort(() => Math.random() - 0.5);
return [...arr].sort(() => 0.5 - Math.random() );
}

0 comments on commit fac207f

Please sign in to comment.