Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
nano2dev committed Mar 3, 2024
1 parent 8662fd5 commit a166858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/javascript/mastodon/components/status_action_bar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class StatusActionBar extends ImmutablePureComponent {
window.NanoPay.open({
title: 'Tip',
address: raw_address.value,
strings: { account: `@${display_name}` },
strings: { account: display_name },
// cancel: () => window.location.reload()
})

Check failure on line 160 in app/javascript/mastodon/components/status_action_bar.jsx

View workflow job for this annotation

GitHub Actions / lint

Missing semicolon
return

Check failure on line 161 in app/javascript/mastodon/components/status_action_bar.jsx

View workflow job for this annotation

GitHub Actions / lint

Arrow function expected a return value

Check failure on line 161 in app/javascript/mastodon/components/status_action_bar.jsx

View workflow job for this annotation

GitHub Actions / lint

Missing semicolon
Expand All @@ -173,7 +173,7 @@ class StatusActionBar extends ImmutablePureComponent {
window.NanoPay.open({
title: 'Tip',
address: account.address,
strings: { account: `@${display_name}` },
strings: { account: display_name },
// cancel: () => window.location.reload()
})
return
Expand Down

0 comments on commit a166858

Please sign in to comment.