diff --git a/src/layouts/Layout.vue b/src/layouts/Layout.vue
index 1540ee7a9..19cdeea81 100644
--- a/src/layouts/Layout.vue
+++ b/src/layouts/Layout.vue
@@ -190,8 +190,8 @@ export default {
this.$store.commit('dao/setDAO', data?.queryDao[0])
this.$store.dispatch('dao/setTheme')
this.state = STATE.READY
- }
- // fetchPolicy: 'no-cache'
+ },
+ fetchPolicy: 'no-cache'
// pollInterval: 300 // TODO: Swap with subscribe once dgraph is ready
},
@@ -201,8 +201,8 @@ export default {
variables() { return { daoUrl: this.dhoname } },
async result (res) {
this.$store.commit('dao/setPlan', res?.data?.activePlan)
- }
- // fetchPolicy: 'no-cache'
+ },
+ fetchPolicy: 'no-cache'
}
},
@@ -234,7 +234,7 @@ export default {
.layout
.spinner(v-if="state === STATE.LOADING")
- component(v-else :is="layout" v-bind="{ dhoname }")
+ component(v-else :is="layout" v-bind="{ dao, dhoname }")