Fix for "random" crash on creation

This commit is contained in:
Daniel Hougaard
2024-02-14 18:04:09 +01:00
parent 021413fbd9
commit 4ab47ca175

View File

@@ -238,6 +238,9 @@ export const AppLayout = ({ children }: LayoutProps) => {
projectId: newProjectId
});
}
// eslint-disable-next-line no-promise-executor-return -- We do this because the function returns too fast, which sometimes causes an error when the user is redirected.
await new Promise((resolve) => setTimeout(resolve, 2_000));
// eslint-disable-next-line no-promise-executor-return -- We do this because the function returns too fast, which sometimes causes an error when the user is redirected.
await new Promise((resolve) => setTimeout(resolve, 2_000));