1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-08 20:10:48 +00:00

Fix rootDoc_id property name in Project type definition ()

GitOrigin-RevId: c37423e5a74017a2ad848f5fdc5cf733c058ff45
This commit is contained in:
Alf Eaton 2023-08-18 11:23:35 +01:00 committed by Copybot
parent e54a1d1a43
commit e627003fd4
2 changed files with 2 additions and 2 deletions
services/web
frontend/stories/decorators
types

View file

@ -31,7 +31,7 @@ const initialize = () => {
},
members: [],
invites: [],
rootDocId: '5e74f1a7ce17ae0041dfd056',
rootDoc_id: '5e74f1a7ce17ae0041dfd056',
rootFolder: [
{
_id: 'root-folder-id',

View file

@ -25,6 +25,6 @@ export type Project = {
owner: MongoUser
members: ProjectMember[]
invites: ProjectInvite[]
rootDocId?: string
rootDoc_id?: string
rootFolder?: Folder[]
}