fix missing sender wallet flag

This commit is contained in:
k00b 2025-01-03 13:51:28 -06:00
parent 146b60278c
commit 3fc1291600
1 changed files with 2 additions and 2 deletions

View File

@ -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
}