Added temp loading screen

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-14 15:30:06 +01:00
parent 6a3ee8dee4
commit 016323cd4a
2 changed files with 4 additions and 1 deletions

View file

@ -125,7 +125,7 @@ export const SubmitPlan = ({
// We could also trigger it inside of mutateUploadCsv but the nested nature is kind of ugly
console.log("Redirect user to loading page");
router.push("/portfolio/somewhere");
router.push("/portfolio/temp-loading");
};
return (

View file

@ -0,0 +1,3 @@
export default async function () {
return <h1>This is a temporary loading screen</h1>;
}