Run prettier
This commit is contained in:
parent
590e912066
commit
78f7fc2076
2 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
});
|
||||
|
|
|
@ -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));
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue