From 6e2f999a11048dffefd2d4fa5937545269653c58 Mon Sep 17 00:00:00 2001 From: Domagoj Kriskovic Date: Mon, 24 Nov 2025 12:41:26 +0100 Subject: [PATCH] Fix import from CollaboratorsHandler.js to CollaboratorsHandler.mjs (#29863) GitOrigin-RevId: 35f7fd558a127c094b65104e0775c67dca4f96f6 --- .../web/scripts/convert_track_changes_to_explicit_format.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/scripts/convert_track_changes_to_explicit_format.mjs b/services/web/scripts/convert_track_changes_to_explicit_format.mjs index 182ebdafa7..1180589d1c 100644 --- a/services/web/scripts/convert_track_changes_to_explicit_format.mjs +++ b/services/web/scripts/convert_track_changes_to_explicit_format.mjs @@ -2,7 +2,7 @@ import { db } from '../app/src/infrastructure/mongodb.js' import { batchedUpdate } from '@overleaf/mongo-utils/batchedUpdate.js' import { scriptRunner } from './lib/ScriptRunner.mjs' -import CollaboratorsHandler from '../app/src/Features/Collaborators/CollaboratorsHandler.js' +import CollaboratorsHandler from '../app/src/Features/Collaborators/CollaboratorsHandler.mjs' const DRY_RUN = !process.argv.includes('--dry-run=false') const DEBUG = process.argv.includes('--debug=true')