Skip to content

Commit ef264b8

Browse files
committed
routing
1 parent 2b75a0f commit ef264b8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

packages/mobile-app/app/(drawer)/account/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,11 @@ export default function Balances() {
312312
<Card
313313
key={transaction.hash}
314314
style={styles.transactionCard}
315+
onPress={() =>
316+
router.push(
317+
`/(drawer)/account/transaction/${transaction.hash}`,
318+
)
319+
}
315320
>
316321
<Text category="s1">{transaction.type.toString()}</Text>
317322
<Text category="p2" appearance="hint">

packages/mobile-app/app/(drawer)/account/send/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,9 @@ export default function Send() {
326326
style={styles.confirmButton}
327327
onPress={() => {
328328
setTransactionState("idle");
329-
router.replace(`/transaction/${sentTxHash}`);
329+
router.replace(
330+
`/(drawer)/account/transaction/${sentTxHash}`,
331+
);
330332
}}
331333
>
332334
View Transaction

0 commit comments

Comments
 (0)