From 8adfdff1f7af562f0855be4dac1a6bd8b032cff7 Mon Sep 17 00:00:00 2001 From: Leonardo Custodio Date: Sat, 12 Aug 2023 16:57:11 -0300 Subject: [PATCH] changes --- resources/js/store/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/js/store/index.ts b/resources/js/store/index.ts index fb018c5..88c93f9 100644 --- a/resources/js/store/index.ts +++ b/resources/js/store/index.ts @@ -194,7 +194,9 @@ export const useAppStore = defineStore('app', { try { this.newCollection = false; + console.log('before collection api'); const res = await CollectionApi.getCollectionsIds(totalCount); + console.log('after collection api'); const collectionsData = res.data.GetCollections; if (collectionsData.pageInfo.hasNextPage) { await this.fetchCollectionIds(collectionsData.totalCount);