File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import { useBalance } from '../../hooks/wallet';
1919import { RootStackScreenProps } from '../../navigation/types' ;
2020import { contactsSelector } from '../../store/reselect/slashtags' ;
2121import { isLDKReadySelector } from '../../store/reselect/ui' ;
22- import { selectedNetworkSelector } from '../../store/reselect/wallet' ;
2322import { deleteContact } from '../../store/slices/slashtags' ;
2423import { AnimatedView , View } from '../../styles/components' ;
2524import {
@@ -45,7 +44,6 @@ const Contact = ({
4544 const [ loading , setLoading ] = useState ( false ) ;
4645
4746 const dispatch = useAppDispatch ( ) ;
48- const selectedNetwork = useAppSelector ( selectedNetworkSelector ) ;
4947 const contacts = useAppSelector ( contactsSelector ) ;
5048 const isLDKReady = useAppSelector ( isLDKReadySelector ) ;
5149
@@ -91,11 +89,7 @@ const Contact = ({
9189 } ) ;
9290 }
9391
94- const res = await processUri ( {
95- uri : url ,
96- source : 'send' ,
97- selectedNetwork,
98- } ) ;
92+ const res = await processUri ( { uri : url } ) ;
9993 setLoading ( false ) ;
10094 if ( res . isOk ( ) ) {
10195 navigation . popToTop ( ) ;
You can’t perform that action at this time.
0 commit comments