From 3b7848950012a3ce3f73ffca3dc296ed5b59c6d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rio=20Nunes?= Date: Thu, 9 Jan 2025 20:21:20 +0000 Subject: [PATCH] remove question store --- src/stores/RootStore.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/stores/RootStore.tsx b/src/stores/RootStore.tsx index 0af3e9d7dd..89e0007be8 100644 --- a/src/stores/RootStore.tsx +++ b/src/stores/RootStore.tsx @@ -3,7 +3,6 @@ import { DatabaseV2 } from './databaseV2/DatabaseV2' import { DiscussionStore } from './Discussions/discussions.store' import { HowtoStore } from './Library/library.store' import { MapsStore } from './Maps/maps.store' -import { QuestionStore } from './Question/question.store' import { ResearchStore } from './Research/research.store' import { TagsStore } from './Tags/tags.store' import { UserNotificationsStore } from './User/notifications.store' @@ -22,7 +21,6 @@ export interface IStores { mapsStore: MapsStore aggregationsStore: AggregationsStore userNotificationsStore: UserNotificationsStore - questionStore: QuestionStore discussionStore: DiscussionStore } @@ -49,7 +47,6 @@ const stores = (rootStore: IRootStore) => { researchStore: new ResearchStore(rootStore), mapsStore: new MapsStore(rootStore), userNotificationsStore: new UserNotificationsStore(rootStore), - questionStore: new QuestionStore(rootStore), discussionStore: new DiscussionStore(rootStore), } return stores