From d0ac9f2e4478a5fab9e3887ea454ae2c5ecf5037 Mon Sep 17 00:00:00 2001 From: use-to <13922835+use-to@users.noreply.github.com> Date: Thu, 21 Dec 2023 11:29:27 +0100 Subject: [PATCH] chore: update play and app store urls --- tasks/components/MobileInterceptor.tsx | 8 ++++++-- tasks/utils/config.ts | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tasks/components/MobileInterceptor.tsx b/tasks/components/MobileInterceptor.tsx index 3c44dec88..1188a8899 100644 --- a/tasks/components/MobileInterceptor.tsx +++ b/tasks/components/MobileInterceptor.tsx @@ -41,8 +41,12 @@ const MobileInterceptor: NextPage = ({ language }: PropsWithLanguage {translation.pleaseDownloadApp} - {translation.playStore} - {translation.appStore} + + {translation.playStore} + + + {translation.appStore} + ) } diff --git a/tasks/utils/config.ts b/tasks/utils/config.ts index 874b02916..4195e1c70 100644 --- a/tasks/utils/config.ts +++ b/tasks/utils/config.ts @@ -29,8 +29,8 @@ const configSchema = z.object({ NEXT_PUBLIC_API_URL: z.string().url().default('https://api.helpwave.de'), NEXT_PUBLIC_MOCK: z.literal('true').or(z.literal('false')).optional(), NEXT_PUBLIC_REQUEST_LOGGING: z.literal('true').or(z.literal('false')).optional(), - NEXT_PUBLIC_PLAYSTORE_LINK: z.string().url().default('https://play.google.com/store/apps'), - NEXT_PUBLIC_APPSTORE_LINK: z.string().url().default('https://www.apple.com/de/app-store/'), + NEXT_PUBLIC_PLAYSTORE_LINK: z.string().url().default('https://play.google.com/store/apps/details?id=de.helpwave.tasks'), + NEXT_PUBLIC_APPSTORE_LINK: z.string().url().default('https://apps.apple.com/de/app/helpwave-tasks/id6472594365'), NEXT_PUBLIC_OAUTH_ISSUER_URL: z.string().url().default('https://auth.helpwave.de'), NEXT_PUBLIC_OAUTH_REDIRECT_URI: z.string().url().default('https://tasks.helpwave.de/auth/callback'), NEXT_PUBLIC_OAUTH_CLIENT_ID: z.string().default('425f8b8d-c786-4ff7-b2bf-e52f505fb588'),