Andrew Bastin пре 4 година
родитељ
комит
6b02d290a5

+ 0 - 1
packages/hoppscotch-app/components/teams/Team.vue

@@ -96,7 +96,6 @@ const props = defineProps<{
 
 const emit = defineEmits<{
   (e: "edit-team"): void
-  
 }>()
 
 const {

+ 2 - 2
packages/hoppscotch-app/helpers/backend/mutations/Team.ts

@@ -46,7 +46,7 @@ export const createTeam = (name: TeamName) =>
 export const deleteTeam = (teamID: string) =>
   runMutation<void, DeleteTeamErrors>(
     gql`
-      mutation DeleteTeam($teamID: String!) {
+      mutation DeleteTeam($teamID: ID!) {
         deleteTeam(teamID: $teamID)
       }
     `,
@@ -58,7 +58,7 @@ export const deleteTeam = (teamID: string) =>
 export const leaveTeam = (teamID: string) =>
   runMutation<void, ExitTeamErrors>(
     gql`
-      mutation ExitTeam($teamID: String!) {
+      mutation ExitTeam($teamID: ID!) {
         leaveTeam(teamID: $teamID)
       }
     `,

+ 1 - 1
packages/hoppscotch-app/pages/profile.vue

@@ -23,8 +23,8 @@
               <p class="flex text-secondaryLight items-center">
                 {{ currentUser.email || $t("state.nothing_found") }}
                 <SmartIcon
-                  name="verified"
                   v-if="currentUser.emailVerified"
+                  name="verified"
                   class="ml-2 text-green-500 svg-icons"
                 />
               </p>