fix missing sender wallet flag
This commit is contained in:
parent
146b60278c
commit
3fc1291600
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue