remove unnecessary ISR

This commit is contained in:
Aarni Halinen
2021-06-29 15:09:37 +03:00
parent 1b6b3b4d09
commit e837434793
4 changed files with 0 additions and 4 deletions
-1
View File
@@ -68,7 +68,6 @@ export const getStaticProps: GetStaticProps<InitialProps> = async ({ params }) =
props: {
initialEvent,
},
revalidate: 10,
notFound,
};
};
-1
View File
@@ -69,7 +69,6 @@ export const getStaticProps: GetStaticProps<InitialProps> = async ({ params }) =
props: {
initialPost,
},
revalidate: 10,
notFound,
};
};
-1
View File
@@ -97,7 +97,6 @@ export const getStaticProps: GetStaticProps<InitialProps> = async ({ params }) =
props: {
initialForm,
},
revalidate: 10,
notFound,
};
};
-1
View File
@@ -60,7 +60,6 @@ const EditSignUpPage: NextPage = () => {
try {
await SignupApi.updateSignup(payload, uuid);
// TODO: Update signup list, so user sees possible changes in the list
toast.success("Sign-up updated successfully 😎");
} catch (error) {
console.error(error);