mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
Remove unused props from components
This commit is contained in:
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -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: {},
|
||||
};
|
||||
}
|
||||
|
||||
@ -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: {},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user