|
|
@@ -1,7 +1,9 @@
|
|
|
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
|
|
+import { isSplitTestEnabled } from '@/utils/splitTestUtils'
|
|
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
|
|
store.set('loadingThreads', true)
|
|
|
store.set('users', {})
|
|
|
store.set('addNewComment', () => {})
|
|
|
+ store.set('usingNewReviewPanel', isSplitTestEnabled('review-panel-redesign'))
|
|
|
}
|