mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 01:32:06 +10:00
fix: change sign in links
This commit is contained in:
@ -176,7 +176,7 @@ export default async function ClaimedPlanPage({ searchParams = {} }: ClaimedPlan
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Link
|
<Link
|
||||||
href={`${process.env.NEXT_PUBLIC_WEBAPP_URL}/login`}
|
href={`${process.env.NEXT_PUBLIC_WEBAPP_URL}/signin`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
className="mt-4 block"
|
className="mt-4 block"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -66,7 +66,7 @@ export const Header = ({ className, ...props }: HeaderProps) => {
|
|||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link
|
<Link
|
||||||
href="https://app.documenso.com/login"
|
href="https://app.documenso.com/signin"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
className="text-muted-foreground hover:text-muted-foreground/80 text-sm font-semibold"
|
className="text-muted-foreground hover:text-muted-foreground/80 text-sm font-semibold"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -46,7 +46,7 @@ export const MENU_NAVIGATION_LINKS = [
|
|||||||
text: 'Privacy',
|
text: 'Privacy',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
href: 'https://app.documenso.com/login',
|
href: 'https://app.documenso.com/signin',
|
||||||
text: 'Sign in',
|
text: 'Sign in',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@ -40,7 +40,7 @@ export default async function handler(
|
|||||||
|
|
||||||
if (user) {
|
if (user) {
|
||||||
return res.status(200).json({
|
return res.status(200).json({
|
||||||
redirectUrl: `${process.env.NEXT_PUBLIC_WEBAPP_URL}/login`,
|
redirectUrl: `${process.env.NEXT_PUBLIC_WEBAPP_URL}/signin`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user