From f1581c650ed374af599c170e555c4426ec428e4d Mon Sep 17 00:00:00 2001 From: "Mr. Paradox" Date: Sun, 22 Feb 2026 12:51:25 +0530 Subject: [PATCH] fix: More tab (iOS): open Apps, Routing, Workflows, Insights, Support in in-app browser --- app/(tabs)/(more)/index.ios.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/(tabs)/(more)/index.ios.tsx b/app/(tabs)/(more)/index.ios.tsx index 205ae8d..fa96cf0 100644 --- a/app/(tabs)/(more)/index.ios.tsx +++ b/app/(tabs)/(more)/index.ios.tsx @@ -95,31 +95,31 @@ export default function More() { name: "Apps", icon: "grid-outline", isExternal: false, - onPress: () => showNotAvailableAlert(), + onPress: () => openInAppBrowser("https://app.cal.com/apps", "Apps page"), }, { name: "Routing", icon: "git-branch-outline", isExternal: false, - onPress: () => showNotAvailableAlert(), + onPress: () => openInAppBrowser("https://app.cal.com/routing", "Routing page"), }, { name: "Workflows", icon: "flash-outline", isExternal: false, - onPress: () => showNotAvailableAlert(), + onPress: () => openInAppBrowser("https://app.cal.com/workflows", "Workflows page"), }, { name: "Insights", icon: "bar-chart-outline", isExternal: false, - onPress: () => showNotAvailableAlert(), + onPress: () => openInAppBrowser("https://app.cal.com/insights", "Insights page"), }, { name: "Support", icon: "help-circle-outline", isExternal: false, - onPress: () => showNotAvailableAlert(), + onPress: () => openInAppBrowser("https://go.cal.com/support", "Support"), }, ];