mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fc3fb7318a
[web] Prevent opening and closing of the mini review panel GitOrigin-RevId: 25297a24ddfb2654b00efa8d33b825620f859147
7 lines
285 B
TypeScript
7 lines
285 B
TypeScript
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
|
store.set('loadingThreads', true)
|
|
store.set('users', {})
|
|
store.set('addNewComment', () => {})
|
|
}
|