From 4a832942f214f7bd4818dc0d83e19484b1d28409 Mon Sep 17 00:00:00 2001 From: Saud Fatayerji Date: Mon, 13 Nov 2023 02:52:25 +0300 Subject: [PATCH] Fixed broken import --- server-node/src/utils/libre-office-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-node/src/utils/libre-office-utils.ts b/server-node/src/utils/libre-office-utils.ts index 548876f6..3f58e499 100644 --- a/server-node/src/utils/libre-office-utils.ts +++ b/server-node/src/utils/libre-office-utils.ts @@ -3,7 +3,7 @@ import fs from 'fs'; import os from 'os'; import path from 'path'; import { exec, spawn } from 'child_process' -import { PdfFile, fromUint8Array } from '@stirling-pdf/shared-operations/wrappers/PdfFile' +import { PdfFile, fromUint8Array } from '@stirling-pdf/shared-operations/src/wrappers/PdfFile' export async function fileToPdf(byteArray: Uint8Array, filename: string): Promise { const parentDir = path.join(os.tmpdir(), "StirlingPDF");