mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c3689ca6f3
[web] React ide page overview switch GitOrigin-RevId: 9a24a8ba9ed8e86d486a12a65259d25c1352c864
8 lines
331 B
TypeScript
8 lines
331 B
TypeScript
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
|
store.set('users', {})
|
|
store.set('reviewPanel.layoutToLeft', false)
|
|
store.set('gotoEntry', () => {})
|
|
store.set('addNewComment', () => {})
|
|
}
|