diff --git a/src/i18n/en/screens/tabs.json b/src/i18n/en/screens/tabs.json index b286a094..e2abcd89 100644 --- a/src/i18n/en/screens/tabs.json +++ b/src/i18n/en/screens/tabs.json @@ -290,9 +290,6 @@ "support": { "heading": "Support tooot" }, - "review": { - "heading": "Review tooot" - }, "contact": { "heading": "Contact tooot" }, diff --git a/src/screens/Tabs/Me/Settings/Tooot.tsx b/src/screens/Tabs/Me/Settings/Tooot.tsx index a6fcf735..a8c3ef05 100644 --- a/src/screens/Tabs/Me/Settings/Tooot.tsx +++ b/src/screens/Tabs/Me/Settings/Tooot.tsx @@ -4,13 +4,11 @@ import { useNavigation } from '@react-navigation/native' import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import * as Linking from 'expo-linking' -import * as StoreReview from 'expo-store-review' import * as WebBrowser from 'expo-web-browser' import React from 'react' import { useTranslation } from 'react-i18next' import { useSelector } from 'react-redux' import { getInstanceActive, getInstanceVersion } from '@utils/slices/instancesSlice' -import { isDevelopment, isRelease } from '@utils/checkEnvironment' import { Platform } from 'react-native' import Constants from 'expo-constants' import { getExpoToken } from '@utils/slices/appSlice' @@ -27,6 +25,12 @@ const SettingsTooot: React.FC = () => { return ( + } + iconBack='ChevronRight' + onPress={() => Linking.openURL('https://www.buymeacoffee.com/xmflsct')} + /> { iconBack='ChevronRight' onPress={() => Linking.openURL('https://feedback.tooot.app/feature-requests')} /> - } - iconBack='ChevronRight' - onPress={() => Linking.openURL('https://www.buymeacoffee.com/xmflsct')} - /> - {isDevelopment || isRelease ? ( - } - iconBack='ChevronRight' - onPress={() => StoreReview?.isAvailableAsync().then(() => StoreReview?.requestReview())} - /> - ) : null} }