This commit is contained in:
Karol Wypchlo 2021-02-08 18:33:39 +01:00
parent 75445923c8
commit c6b992b34e
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,6 @@ export async function getServerSideProps(context) {
try {
const { status, data } = await kratos.getSelfServiceLoginFlow(flow);
console.log("flow", data);
if (status === 200) return { props: { flow: data } };
throw new Error(`Failed to retrieve flow ${flow} with code ${status}`);
@ -71,6 +69,8 @@ export default function Login({ flow }) {
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
});
console.log("flow", flow);
return (
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
<div className="sm:mx-auto sm:w-full sm:max-w-md">

View File

@ -29,8 +29,6 @@ export async function getServerSideProps(context) {
try {
const { status, data } = await kratos.getSelfServiceRegistrationFlow(flow);
console.log("flow", data);
if (status === 200) return { props: { flow: data } };
throw new Error(`Failed to retrieve flow ${flow} with code ${status}`);
@ -81,6 +79,8 @@ export default function Registration({ flow }) {
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
});
console.log("flow", flow);
return (
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
<div className="sm:mx-auto sm:w-full sm:max-w-md">