diff --git a/packages/techdocs-common/src/stages/publish/helpers.ts b/packages/techdocs-common/src/stages/publish/helpers.ts index 26a16893ed..9b935ccbfd 100644 --- a/packages/techdocs-common/src/stages/publish/helpers.ts +++ b/packages/techdocs-common/src/stages/publish/helpers.ts @@ -119,7 +119,6 @@ export const lowerCaseEntityTriplet = (posixPath: string): string => { export const lowerCaseEntityTripletInStoragePath = ( originalPath: string, ): string => { - // normalize path using path.sep (as its support both windows and posix) let posixPath = originalPath; if (originalPath.includes(path.win32.sep)) { posixPath = originalPath.split(path.win32.sep).join(path.posix.sep);