bugfix not showing loading indicator when loading form frontend

This commit is contained in:
Matthias Nannt
2022-08-17 23:13:35 +02:00
parent b48018b2f8
commit 1a64baf83e

View File

@@ -12,16 +12,16 @@ export default function NoCodeFormPublic() {
const { noCodeForm, isLoadingNoCodeForm, isErrorNoCodeForm } =
useNoCodeFormPublic(formId);
if (isLoadingNoCodeForm) {
return <Loading />;
}
if (isErrorNoCodeForm || !noCodeForm?.published) {
return (
<MessagePage text="Form not found. Are you sure this is the right URL?" />
);
}
if (isLoadingNoCodeForm) {
return <Loading />;
}
return (
<BaseLayoutUnauthorized title="snoopForms">
{noCodeForm.closed ? (