Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1eef committed Sep 16, 2024
1 parent 590e912 commit 78f7fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/loaders/SurahIndexLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { formatNumber } from "~/lib/t";
pkg.fonts.forEach((f) => document.fonts.add(f));
pkg.css.forEach((s) => document.head.appendChild(s));
pkg.scripts
.sort((a,b) => Number(a.id) - Number(b.id))
.sort((a, b) => Number(a.id) - Number(b.id))
.forEach((s) => {
document.body.removeChild(document.body.appendChild(s));
});
Expand Down
2 changes: 1 addition & 1 deletion src/js/loaders/SurahStreamLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { formatNumber } from "~/lib/t";
pkg.css.forEach((s) => document.head.appendChild(s));
pkg.json.forEach((o) => document.body.appendChild(o));
pkg.scripts
.sort((a,b) => Number(a.id) - Number(b.id))
.sort((a, b) => Number(a.id) - Number(b.id))
.forEach((s) => {
document.body.removeChild(document.body.appendChild(s));
});
Expand Down

0 comments on commit 78f7fc2

Please sign in to comment.