From 6b297c807447ce0aa03c8ad1f5a814fdf195fb97 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 18 May 2024 15:07:28 -0700 Subject: [PATCH] fix: app store link --- app/lib/views/screens/chat_screen.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/lib/views/screens/chat_screen.dart b/app/lib/views/screens/chat_screen.dart index 5c606ad..0743e37 100644 --- a/app/lib/views/screens/chat_screen.dart +++ b/app/lib/views/screens/chat_screen.dart @@ -412,8 +412,8 @@ class ChatScreenState extends State { List _buildLinkItems(BuildContext context) { final links = [ { - 'title': 'TestFlight', - 'url': 'https://testflight.apple.com/join/kriNj2gR' + 'title': 'App Store', + 'url': 'https://apps.apple.com/us/app/glowby-genius/id6446417094' }, {'title': 'Glowby GPT', 'url': 'https://glowbom.com/glowby/gpt'}, { @@ -580,7 +580,7 @@ class ChatScreenState extends State { child: ElevatedButton( onPressed: () async { String url = - 'https://testflight.apple.com/join/kriNj2gR'; + 'https://apps.apple.com/us/app/glowby-genius/id6446417094'; if (await canLaunchUrlString(url)) { await launchUrlString(url); } else { @@ -588,7 +588,7 @@ class ChatScreenState extends State { } }, child: const Text( - 'TestFlight', + 'App Store', style: TextStyle(color: Colors.white), ), ),