Skip to content

Commit 3fc1291

Browse files
committed
fix missing sender wallet flag
1 parent 146b602 commit 3fc1291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fragments/paidAction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ export const BUY_CREDITS = gql`
132132
export const ACT_MUTATION = gql`
133133
${PAID_ACTION}
134134
${ITEM_ACT_PAID_ACTION_FIELDS}
135-
mutation act($id: ID!, $sats: Int!, $act: String) {
136-
act(id: $id, sats: $sats, act: $act) {
135+
mutation act($id: ID!, $sats: Int!, $act: String, $hasSendWallet: Boolean) {
136+
act(id: $id, sats: $sats, act: $act, hasSendWallet: $hasSendWallet) {
137137
...ItemActPaidActionFields
138138
...PaidActionFields
139139
}

0 commit comments

Comments
 (0)