From 08f61e740828e5a36b4e8b3130ab35261ee6c855 Mon Sep 17 00:00:00 2001 From: Mir Arif Hasan Date: Tue, 9 May 2023 16:25:38 +0600 Subject: [PATCH] fix: magic link URL (#3028) --- packages/hoppscotch-backend/src/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hoppscotch-backend/src/auth/auth.service.ts b/packages/hoppscotch-backend/src/auth/auth.service.ts index f9ffbe3242..6c5beae5ef 100644 --- a/packages/hoppscotch-backend/src/auth/auth.service.ts +++ b/packages/hoppscotch-backend/src/auth/auth.service.ts @@ -232,7 +232,7 @@ export class AuthService { template: 'code-your-own', variables: { inviteeEmail: email, - magicLink: `${url}/magic-link?token=${generatedTokens.token}`, + magicLink: `${url}/enter?token=${generatedTokens.token}`, }, });