From 19cdba3ab7367177f8228637e242def33880fca5 Mon Sep 17 00:00:00 2001 From: Claudia Barcelo Date: Sun, 21 Apr 2024 05:54:59 +0200 Subject: [PATCH] feat: remove function call from root to avoid running it when improting the file --- scripts/crawlers/crawlNewData/index.cjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/crawlers/crawlNewData/index.cjs b/scripts/crawlers/crawlNewData/index.cjs index 9285a757ae..50af5488e8 100644 --- a/scripts/crawlers/crawlNewData/index.cjs +++ b/scripts/crawlers/crawlNewData/index.cjs @@ -23,6 +23,4 @@ const crawlForFreshEntriesAndUpdateNetworkBoard = async () => { ); }; -crawlForFreshEntriesAndUpdateNetworkBoard() - module.exports = crawlForFreshEntriesAndUpdateNetworkBoard;