drop flow logging
This commit is contained in:
parent
f775f48bd1
commit
59eb9f4a89
|
@ -69,8 +69,6 @@ export default function Login({ flow }) {
|
||||||
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
|
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("flow", flow);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
|
<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">
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
||||||
|
|
|
@ -79,8 +79,6 @@ export default function Registration({ flow }) {
|
||||||
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
|
initialValues: fields.reduce((acc, field) => ({ ...acc, [field.name]: field.value }), {}),
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("flow", flow);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
|
<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">
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
||||||
|
|
|
@ -56,7 +56,6 @@ export default function Recovery({ flow }) {
|
||||||
}))
|
}))
|
||||||
.sort((a, b) => (a.position < b.position ? -1 : 1));
|
.sort((a, b) => (a.position < b.position ? -1 : 1));
|
||||||
|
|
||||||
console.log(flow);
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
|
<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">
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
||||||
|
|
Reference in New Issue