From 76198ec7781fdc308bf9e50c5bc7c6f458269289 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Fri, 17 May 2024 22:52:42 -0400 Subject: [PATCH] removed old API call to be replaced with new one in future --- .../components/ProfilePage/profileHeader.vue | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/17th Website/src/components/ProfilePage/profileHeader.vue b/17th Website/src/components/ProfilePage/profileHeader.vue index 226f369..63e65c2 100644 --- a/17th Website/src/components/ProfilePage/profileHeader.vue +++ b/17th Website/src/components/ProfilePage/profileHeader.vue @@ -12,15 +12,15 @@ export default { }, mounted() { this.user = this.$route.params.name; - QueryApolloGraphQL("getPageViewMemberRankStatusAll", `query GetPageViewMemberRankStatusAll { - getPageViewMemberRankStatusAll(filter: "member_name = ${this.user}") { - items { - member_name - status - rank - } - } - }`).then(value => { this.items = value; }); + // QueryApolloGraphQL("getPageViewMemberRankStatusAll", `query GetPageViewMemberRankStatusAll { + // getPageViewMemberRankStatusAll(filter: "member_name = ${this.user}") { + // items { + // member_name + // status + // rank + // } + // } + // }`).then(value => { this.items = value; }); }, computed: { headerInfo() {