diff --git a/front/src/components/RecentWhiteboardsList.vue b/front/src/components/RecentWhiteboardsList.vue index ef287d0..0b4d38d 100644 --- a/front/src/components/RecentWhiteboardsList.vue +++ b/front/src/components/RecentWhiteboardsList.vue @@ -2,11 +2,11 @@ import { onMounted, computed } from 'vue' import { useRouter } from 'vue-router' -import { useWhiteboardStore } from '@/stores/whiteboards' +import { useWhiteboardsStore } from '@/stores/whiteboards' import RecentWhiteboardsItem from './RecentWhiteboardsItem.vue' const router = useRouter() -const store = useWhiteboardStore() +const store = useWhiteboardsStore() onMounted(() => { if (store.recentWhiteboards.length === 0) store.getRecentWhiteboards() diff --git a/front/src/components/WhiteboardHistoryList.vue b/front/src/components/WhiteboardHistoryList.vue index 08cf636..5097d4a 100644 --- a/front/src/components/WhiteboardHistoryList.vue +++ b/front/src/components/WhiteboardHistoryList.vue @@ -1,11 +1,11 @@