Skip to content

Commit

Permalink
fix: sometimes initial page is blank
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Feb 16, 2023
1 parent 2a2e1d2 commit 14da639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/histoire-app/src/app/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const commandStore = useCommandStore()
class="htw-h-screen htw-bg-white dark:htw-bg-gray-700 dark:htw-text-gray-100"
:style="{
// Prevent flash of content
opacity: mounted && !loading ? 1 : 0,
opacity: mounted ? 1 : 0,
}"
>
<div
Expand Down

0 comments on commit 14da639

Please sign in to comment.