Skip to content

Commit

Permalink
Improved: logic to get instanceUrl (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanskar345 committed Sep 21, 2023
1 parent 1922fc5 commit 7446164
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/MenuFooterNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import { computed } from 'vue';
const authStore = useAuthStore();
const appState = appContext.config.globalProperties.$store;
const instanceUrl = authStore.getOms;
const instanceUrl = computed(() => authStore.getOms);
const appUserState = computed(() => {
return {
userProfile: appState.getters['user/getUserProfile'],
Expand All @@ -52,5 +52,4 @@ const appUserState = computed(() => {
currentShopifyConfig: appState.getters['user/getCurrentShopifyConfig']
}
});
</script>

0 comments on commit 7446164

Please sign in to comment.