From 75dd1e4c8855b792e2b3e076649ff0df081420f0 Mon Sep 17 00:00:00 2001 From: Kilari Teja Date: Thu, 29 Aug 2024 11:17:29 +0530 Subject: [PATCH] Fix import path Related to https://github.com/Explosion-Scratch/firebuilder/issues/4 --- helpers/firefoxPaths.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helpers/firefoxPaths.js b/helpers/firefoxPaths.js index 5ee91e2..dda1d0f 100644 --- a/helpers/firefoxPaths.js +++ b/helpers/firefoxPaths.js @@ -1,5 +1,6 @@ import { platform, homedir } from "os"; -import { join, resolve, existsSync } from "path"; +import { join, resolve } from "path"; +import { existsSync } from "fs"; export default function getFirefoxPaths() { const os = platform();