From ad1caef73da944f7951bc0dcc959f79cc45c026a Mon Sep 17 00:00:00 2001 From: Evan Kaloudis Date: Sat, 4 Apr 2026 23:57:39 -0400 Subject: [PATCH] ui: Ecash Settings: add Mints navigation link when ecash is enabled --- views/Settings/EcashSettings.tsx | 38 ++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/views/Settings/EcashSettings.tsx b/views/Settings/EcashSettings.tsx index a8194716f..40369e120 100644 --- a/views/Settings/EcashSettings.tsx +++ b/views/Settings/EcashSettings.tsx @@ -3,12 +3,13 @@ import { Text, View, ScrollView } from 'react-native'; import { inject, observer } from 'mobx-react'; import { NativeStackNavigationProp } from '@react-navigation/native-stack'; +import { Icon, ListItem } from '@rneui/themed'; + import Button from '../../components/Button'; import Header from '../../components/Header'; import LoadingIndicator from '../../components/LoadingIndicator'; import AmountInput from '../../components/AmountInput'; -import Pill from '../../components/Pill'; import Screen from '../../components/Screen'; import Switch from '../../components/Switch'; @@ -132,14 +133,6 @@ export default class EcashSettings extends React.Component< marginTop: 5 }} > - + {enableCashu && ( + navigation.navigate('Mints')} + > + + + {localeString('cashu.cashuMints')} + + + + + )} + {hasOpenChannels && enableCashu && (