Skip to content

Commit

Permalink
fix: try remove skeleton
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <[email protected]>
  • Loading branch information
Innei committed Nov 18, 2024
1 parent c27665d commit e0d9502
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/renderer/src/lib/app.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export const removeAppSkeleton = () => {
document.querySelector("#app-skeleton")?.remove()
try {
document.querySelector("#app-skeleton")?.remove()
} catch {
// ignore
}
}

0 comments on commit e0d9502

Please sign in to comment.