From 1b0b4f6054991b8375b722618dc2606c53ace4d2 Mon Sep 17 00:00:00 2001 From: kyle-ssg Date: Thu, 4 Apr 2024 19:27:29 +0100 Subject: [PATCH] Fix organisation store imports --- frontend/common/stores/feature-list-store.js | 2 +- frontend/common/stores/project-store.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/common/stores/feature-list-store.js b/frontend/common/stores/feature-list-store.js index 7557c5ac6033..090a5defe000 100644 --- a/frontend/common/stores/feature-list-store.js +++ b/frontend/common/stores/feature-list-store.js @@ -3,10 +3,10 @@ import { getIsWidget } from 'components/pages/WidgetPage' import ProjectStore from './project-store' import { createAndPublishFeatureVersion } from 'common/services/useFeatureVersion' import { updateSegmentPriorities } from 'common/services/useSegmentPriority' +import OrganisationStore from './organisation-store' const Dispatcher = require('common/dispatcher/dispatcher') const BaseStore = require('./base/_store') -const OrganisationStore = require('./organisation-store') const data = require('../data/base/_data') const { createSegmentOverride } = require('../services/useSegmentOverride') const { getStore } = require('../store') diff --git a/frontend/common/stores/project-store.js b/frontend/common/stores/project-store.js index e2def88431e5..17e2c69478f7 100644 --- a/frontend/common/stores/project-store.js +++ b/frontend/common/stores/project-store.js @@ -1,11 +1,11 @@ import { getIsWidget } from 'components/pages/WidgetPage' +import OrganisationStore from './organisation-store' import Constants from 'common/constants' import Utils from 'common/utils/utils' const Dispatcher = require('../dispatcher/dispatcher') const BaseStore = require('./base/_store') -const OrganisationStore = require('./organisation-store') const data = require('../data/base/_data')