Skip to content

Commit

Permalink
fix missing sender wallet flag
Browse files Browse the repository at this point in the history
  • Loading branch information
huumn committed Jan 3, 2025
1 parent 146b602 commit 3fc1291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fragments/paidAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export const BUY_CREDITS = gql`
export const ACT_MUTATION = gql`
${PAID_ACTION}
${ITEM_ACT_PAID_ACTION_FIELDS}
mutation act($id: ID!, $sats: Int!, $act: String) {
act(id: $id, sats: $sats, act: $act) {
mutation act($id: ID!, $sats: Int!, $act: String, $hasSendWallet: Boolean) {
act(id: $id, sats: $sats, act: $act, hasSendWallet: $hasSendWallet) {
...ItemActPaidActionFields
...PaidActionFields
}
Expand Down

0 comments on commit 3fc1291

Please sign in to comment.