Skip to content

Commit

Permalink
fix: fix comment on collab (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexf00 authored Nov 27, 2024
1 parent 27d7c14 commit b967aee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/presets/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DependencyOverride, IUniverConfig, Plugin, PluginCtor } from '@univerjs/core';
import { FUniver, IAuthzIoService, IUndoRedoService, LogLevel, Univer } from '@univerjs/core';
import { FUniver, IAuthzIoService, IMentionIOService, IUndoRedoService, LogLevel, Univer } from '@univerjs/core';

/**
* A collection of plugins and their default configs.
Expand All @@ -26,6 +26,7 @@ export function createUniver(options: CreateUniverOptions) {
if (collaboration) {
override.push([IUndoRedoService, null]);
override.push([IAuthzIoService, null]);
override.push([IMentionIOService, null]);
}

const univer = new Univer({
Expand Down

0 comments on commit b967aee

Please sign in to comment.