File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export default defineComponent({
160
160
const { state : proxies$ } = useProxyStore ();
161
161
const cashlinkAddress = isIncoming .value ? props .transaction .sender : props .transaction .recipient ;
162
162
const hubCashlink = proxies$ .hubCashlinks [cashlinkAddress ];
163
- return hubCashlink ? hubCashlink .message : ' ' ;
163
+ if ( hubCashlink && hubCashlink .message ) return hubCashlink . message ;
164
164
}
165
165
166
166
if (swapData .value && ! isCancelledSwap .value ) {
Original file line number Diff line number Diff line change @@ -466,7 +466,7 @@ export default defineComponent({
466
466
});
467
467
468
468
const data = computed (() => {
469
- if (isCashlink .value ) return hubCashlink .value ? hubCashlink .value .message : ' ' ;
469
+ if (hubCashlink .value && hubCashlink .value . message ) return hubCashlink .value .message ;
470
470
471
471
if (swapData .value && ! isCancelledSwap .value ) return ' ' ;
472
472
You can’t perform that action at this time.
0 commit comments