Skip to content

Commit

Permalink
remove question store
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojsnunes committed Jan 9, 2025
1 parent 9a5f00a commit 3b78489
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/stores/RootStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -22,7 +21,6 @@ export interface IStores {
mapsStore: MapsStore
aggregationsStore: AggregationsStore
userNotificationsStore: UserNotificationsStore
questionStore: QuestionStore
discussionStore: DiscussionStore
}

Expand All @@ -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
Expand Down

0 comments on commit 3b78489

Please sign in to comment.