Skip to content

Commit

Permalink
fix(auth): fix registration loading height
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristiaanScheermeijer committed Aug 3, 2021
1 parent b8fe53c commit 9b9bf59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/RegistrationForm/RegistrationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ const RegistrationForm: React.FC<Props> = ({
};

if (loading) {
return <LoadingOverlay inline />;
return (
<div style={{ height: 400 }}>
<LoadingOverlay inline />
</div>
);
}

return (
Expand Down

0 comments on commit 9b9bf59

Please sign in to comment.