mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
chore: remove undefined check
This commit is contained in:
@ -44,7 +44,7 @@ export default async function SigningPage({ params: { token } }: SigningPageProp
|
||||
return notFound();
|
||||
}
|
||||
|
||||
if (document?.status === 'COMPLETED') {
|
||||
if (document.status === 'COMPLETED') {
|
||||
redirect(`/sign/${token}/complete`);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user