From 7acf23033dcee0dd3603654f3ca1df1c83c61154 Mon Sep 17 00:00:00 2001 From: Aman Harwara Date: Thu, 20 Jul 2023 20:23:26 +0530 Subject: [PATCH] chore: fix blank screen issue on iOS web app --- packages/snjs/lib/Application/Platforms.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/snjs/lib/Application/Platforms.ts b/packages/snjs/lib/Application/Platforms.ts index d0a0b89bc..7b18869d2 100644 --- a/packages/snjs/lib/Application/Platforms.ts +++ b/packages/snjs/lib/Application/Platforms.ts @@ -8,7 +8,7 @@ export function platformFromString(string: string) { 'linux-desktop': Platform.LinuxDesktop, 'windows-web': Platform.WindowsWeb, 'windows-desktop': Platform.WindowsDesktop, - ios: Platform.Ios, + 'ios-web': Platform.Ios, android: Platform.Android, } return map[string]