2023-11-02 07:18:12 -04:00
|
|
|
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
2024-10-23 04:38:16 -04:00
|
|
|
import { isSplitTestEnabled } from '@/utils/splitTestUtils'
|
2023-11-02 07:18:12 -04:00
|
|
|
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
2024-01-16 07:30:49 -05:00
|
|
|
store.set('loadingThreads', true)
|
2023-11-02 07:18:12 -04:00
|
|
|
store.set('users', {})
|
|
|
|
store.set('addNewComment', () => {})
|
2024-10-23 04:38:16 -04:00
|
|
|
store.set('usingNewReviewPanel', isSplitTestEnabled('review-panel-redesign'))
|
2023-11-02 07:18:12 -04:00
|
|
|
}
|