Remove unused props from components

This commit is contained in:
Ephraim Atta-Duncan
2023-06-07 10:37:47 +00:00
parent 7cc1ae2de0
commit 54a965e2b4
3 changed files with 8 additions and 16 deletions

View File

@ -12,7 +12,7 @@ interface ResetPasswordForm {
confirmPassword: string;
}
export default function ResetPassword(props: any) {
export default function ResetPassword() {
const router = useRouter();
const { token } = router.query;
@ -48,7 +48,7 @@ export default function ResetPassword(props: any) {
setResetSuccessful(true);
setTimeout(() => {
router.push("/login");
}, 2000);
}, 3000);
}
};

View File

@ -2,13 +2,13 @@ import Head from "next/head";
import { getUserFromToken } from "@documenso/lib/server";
import ResetPassword from "../../../components/reset-password";
export default function ResetPasswordPage(props: any) {
export default function ResetPasswordPage() {
return (
<>
<Head>
<title>Reset Password | Documenso</title>
</Head>
<ResetPassword allowSignup={props.ALLOW_SIGNUP}></ResetPassword>
<ResetPassword />
</>
);
}
@ -24,11 +24,7 @@ export async function getServerSideProps(context: any) {
},
};
const ALLOW_SIGNUP = process.env.NEXT_PUBLIC_ALLOW_SIGNUP === "true";
return {
props: {
ALLOW_SIGNUP,
},
props: {},
};
}

View File

@ -2,13 +2,13 @@ import Head from "next/head";
import { getUserFromToken } from "@documenso/lib/server";
import ForgotPassword from "../components/forgot-password";
export default function ForgotPasswordPage(props: any) {
export default function ForgotPasswordPage() {
return (
<>
<Head>
<title>Forgot Password | Documenso</title>
</Head>
<ForgotPassword allowSignup={props.ALLOW_SIGNUP}></ForgotPassword>
<ForgotPassword />
</>
);
}
@ -24,11 +24,7 @@ export async function getServerSideProps(context: any) {
},
};
const ALLOW_SIGNUP = process.env.NEXT_PUBLIC_ALLOW_SIGNUP === "true";
return {
props: {
ALLOW_SIGNUP,
},
props: {},
};
}