Yuki Takei пре 4 година
родитељ
комит
d46805f6b3
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/app/src/server/models/editor-settings.ts

+ 1 - 1
packages/app/src/server/models/editor-settings.ts

@@ -32,7 +32,7 @@ const textlintSettingsSchema = new Schema<ITextlintSettings>({
   },
   },
 });
 });
 
 
-const editorSettingsSchema = new Schema<IEditorSettings>({
+const editorSettingsSchema = new Schema<EditorSettingsDocument, EditorSettingsModel>({
   userId: { type: String },
   userId: { type: String },
   textlintSettings: textlintSettingsSchema,
   textlintSettings: textlintSettingsSchema,
 });
 });