From fb548f9445e90e725153b1369edb66d632c622ff Mon Sep 17 00:00:00 2001 From: Nikhil Nawgiri Date: Sat, 26 Oct 2024 21:39:30 +0200 Subject: [PATCH] Refactor --- be/src/fsHelper.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/be/src/fsHelper.ts b/be/src/fsHelper.ts index ffc15fd..4079392 100644 --- a/be/src/fsHelper.ts +++ b/be/src/fsHelper.ts @@ -2,6 +2,5 @@ import * as fs from "fs"; export const saveJsonToDisk = (content: {}) => { const outputPath = `../database.json`; - fs.writeFileSync(outputPath, JSON.stringify(content)); }