chore: clean up
This commit is contained in:
@@ -460,13 +460,6 @@ watch(
|
||||
}
|
||||
)
|
||||
|
||||
watch(
|
||||
() => pendingInvites,
|
||||
() => {
|
||||
console.log(pendingInvites)
|
||||
}
|
||||
)
|
||||
|
||||
const removeInvitee = async (id: string) => {
|
||||
const result = await revokeTeamInvitation(id)()
|
||||
if (E.isLeft(result)) {
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, watchEffect } from "@nuxtjs/composition-api"
|
||||
import { ref } from "@nuxtjs/composition-api"
|
||||
import * as E from "fp-ts/Either"
|
||||
import { useGQLQuery } from "~/helpers/backend/GQLClient"
|
||||
import {
|
||||
@@ -117,10 +117,6 @@ const myTeams = useGQLQuery<
|
||||
pollDuration: 5000,
|
||||
})
|
||||
|
||||
watchEffect(() => {
|
||||
console.log(myTeams)
|
||||
})
|
||||
|
||||
const displayModalAdd = (shouldDisplay: boolean) => {
|
||||
showModalAdd.value = shouldDisplay
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user