fix(servr-dev): Fix 404 redirect so that browser back works.

This commit is contained in:
Sam Tolmay 2022-01-21 10:57:19 +02:00
parent d6fb500670
commit 9df6579198
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0

View File

@ -26,7 +26,7 @@ const LoadingBlock = () => <div>Loading...</div>;
const Page = ({ lowdefy }) => {
const { data: pageConfig } = usePageConfig(lowdefy.pageId);
if (!pageConfig) {
lowdefy._internal.router.push(`/404`);
lowdefy._internal.router.replace(`/404`);
return <LoadingBlock />;
}
return (