Shun Miyazawa 2 лет назад
Родитель
Сommit
1dbdf6f179
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      apps/app/src/client/services/side-effects/page-updated.ts

+ 1 - 1
apps/app/src/client/services/side-effects/page-updated.ts

@@ -38,7 +38,7 @@ export const usePageUpdatedEffect = (): void => {
       const remoteRevisionId = s2cMessagePageUpdated.revisionId;
       const isRevisionOutdated = (currentRevisionId != null || remoteRevisionId != null) && currentRevisionId !== remoteRevisionId;
 
-      // !!CAUTION!! Timing of calling openPageStatusAlert may clash with client/services/update-page/conflict.tsx
+      // !!CAUTION!! Timing of calling openPageStatusAlert may clash with components/PageEditor/conflict.tsx
       if (isRevisionOutdated && editorMode === EditorMode.View) {
         openPageStatusAlert({ hideEditorMode: EditorMode.Editor, onRefleshPage: mutateCurrentPage });
       }