File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
packages/mobile-app/app/(drawer)/account Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,11 @@ export default function Balances() {
312
312
< Card
313
313
key = { transaction . hash }
314
314
style = { styles . transactionCard }
315
+ onPress = { ( ) =>
316
+ router . push (
317
+ `/(drawer)/account/transaction/${ transaction . hash } ` ,
318
+ )
319
+ }
315
320
>
316
321
< Text category = "s1" > { transaction . type . toString ( ) } </ Text >
317
322
< Text category = "p2" appearance = "hint" >
Original file line number Diff line number Diff line change @@ -326,7 +326,9 @@ export default function Send() {
326
326
style = { styles . confirmButton }
327
327
onPress = { ( ) => {
328
328
setTransactionState ( "idle" ) ;
329
- router . replace ( `/transaction/${ sentTxHash } ` ) ;
329
+ router . replace (
330
+ `/(drawer)/account/transaction/${ sentTxHash } ` ,
331
+ ) ;
330
332
} }
331
333
>
332
334
View Transaction
You can’t perform that action at this time.
0 commit comments