Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix irregular loading screen (#10419)
Browse files Browse the repository at this point in the history
  • Loading branch information
SYBIOTE authored Jun 19, 2024
1 parent 268f18b commit 24de4e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/client-core/src/components/LoadWebappInjection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export const LoadWebappInjection = (props) => {
})
}, [])

if (!projectComponents.value) return <LoadingView title={t('common:loader.authenticating')} />
if (!projectComponents.value)
return <LoadingView fullScreen className="block h-12 w-12" title={t('common:loader.authenticating')} />

return (
<>
Expand Down

0 comments on commit 24de4e1

Please sign in to comment.