fix: invitation acceptance flow

This commit is contained in:
liyasthomas
2021-10-18 21:43:13 +05:30
parent 0e381ab850
commit 4e30efd737
5 changed files with 205 additions and 95 deletions

View File

@@ -6,6 +6,7 @@ import {
watchEffect,
watchSyncEffect,
WatchStopHandle,
set,
} from "@nuxtjs/composition-api"
import {
createClient,
@@ -222,7 +223,8 @@ export const useGQLQuery = <DocType, DocVarType, DocErrorType extends string>(
const execute = (updatedVars?: DocVarType) => {
if (updatedVars) {
args.variables = updatedVars as any
set(args, "variables", updatedVars)
// args.variables = updatedVars as any
}
isPaused.value = false