Skip to content

Commit 960b08a

Browse files
authored
Update index.tsx (#76)
Fix tx processing alert message
1 parent d4e1aef commit 960b08a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/app/[username]/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default function Profile() {
4848
return;
4949
}
5050
console.log('start sending tokens');
51-
changeAlertInfo({severity: 'info', message: 'Transaction processing', open: true,});
51+
changeAlertInfo({severity: 'info', message: 'Transaction processing', open: true, link: ''});
5252
const accountInfo = getUserAccountDetails();
5353
if (!accountInfo) {
5454
console.error("No valid send account found! Cannot send.");
@@ -146,4 +146,4 @@ export default function Profile() {
146146
</div>
147147
</div>
148148
);
149-
}
149+
}

0 commit comments

Comments
 (0)