diff --git a/src/stores/useHoloportAPIStore.js b/src/stores/useHoloportAPIStore.js index 544c5db..00a4f77 100644 --- a/src/stores/useHoloportAPIStore.js +++ b/src/stores/useHoloportAPIStore.js @@ -4,11 +4,11 @@ import { defineStore } from 'pinia' import { listify } from '../utils' import { kycLevel2 } from '../services/hbs' -const makeUseHoloportAPIStore = ({ useHolochainStore }) => defineStore('holoportAPI', { +const makeUseHoloportAPIStore = () => defineStore('holoportAPI', { state: () => ({ client: null, // These two values are subscribed to by clientStore - appInfo: useHolochainStore().appInfo, + appInfo: null, isReady: false, signingCredentials: null }),