Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit afe1b1d

Browse files
committed
Show createResrouce txid even if it's not in wallet
1 parent 729cc0c commit afe1b1d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/ActivityDetailsModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,8 +520,7 @@ export function ActivityDetailsModal(props: {
520520
} else {
521521
console.debug("reading tx: ", id());
522522
const tx = await state.mutiny_wallet?.get_transaction(id());
523-
524-
return tx;
523+
return tx !== null ? tx : id(); // if no tx found still show id
525524
}
526525
} catch (e) {
527526
console.error(e);

0 commit comments

Comments
 (0)