diff --git a/apps/wallet/src/utils/auth/providers/telegram.ts b/apps/wallet/src/utils/auth/providers/telegram.ts index 9b8ddca..2f67edc 100644 --- a/apps/wallet/src/utils/auth/providers/telegram.ts +++ b/apps/wallet/src/utils/auth/providers/telegram.ts @@ -40,7 +40,7 @@ export class TelegramAuthenticateProvider implements IAuthenticateProvider { const userData: any = { ...data } delete userData.hash delete userData.auth_date - const queryValue = `user=${encodeURIComponent(JSON.stringify(userData))}&auth_data=${data.auth_date}&hash=${data.hash}` + const queryValue = `user=${encodeURIComponent(JSON.stringify(userData))}&auth_date=${data.auth_date}&hash=${data.hash}` window.location.href = `${AUTH_SERVER_URL}?tgWebAppData=${encodeURIComponent(queryValue)}` }, );