mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Fix wrong hook name
GitOrigin-RevId: 58f98b508cf650a6ecab38772faf9ecd38c9a7bc
This commit is contained in:
parent
f2060b35ad
commit
10bb724197
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import { createContext, useContext, useMemo } from 'react'
|
||||
import type { PropsWithChildren } from 'react'
|
||||
import useSetProjectWideSettings from '../hooks/use-set-project-wide-settings'
|
||||
import useProjectWideSettings from '../hooks/use-project-wide-settings'
|
||||
import useUserWideSettings from '../hooks/use-user-wide-settings'
|
||||
import useProjectWideSettingsSocketListener from '../hooks/use-project-wide-settings-socket-listener'
|
||||
import type { ProjectSettingsScope, UserSettingsScope } from '../utils/api'
|
||||
|
@ -48,7 +48,7 @@ export function ProjectSettingsProvider({
|
|||
setRootDocId,
|
||||
spellCheckLanguage,
|
||||
setSpellCheckLanguage,
|
||||
} = useSetProjectWideSettings()
|
||||
} = useProjectWideSettings()
|
||||
|
||||
const {
|
||||
autoComplete,
|
||||
|
|
|
@ -6,7 +6,7 @@ import { ProjectSettingsScope, saveProjectSettings } from '../utils/api'
|
|||
import useSetRootDocId from './use-set-root-doc-id'
|
||||
import useSetSpellCheckLanguage from './use-set-spell-check-language'
|
||||
|
||||
export default function useSetProjectWideSettings() {
|
||||
export default function useProjectWideSettings() {
|
||||
// The value will be undefined on mount
|
||||
const [project, setProject] = useScopeValue<ProjectSettingsScope | undefined>(
|
||||
'project',
|
Loading…
Reference in a new issue