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'),