From 9ed0f33c0a8c3503f208ab52b89ce43e314178b9 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Wed, 6 Oct 2021 10:33:54 +0200 Subject: [PATCH] fix: small bug --- pages/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.js b/pages/index.js index 563b464..6081a32 100644 --- a/pages/index.js +++ b/pages/index.js @@ -8,7 +8,7 @@ import { DisplayElement } from '../lib/displayElement' import { DisplayAsMarkdown } from '../lib/displayAsMarkdown' import { CreateTableWithDistances } from '../lib/findPaths' import { TextAreaForJson } from "../lib/textAreaForJson" -import { pushToMongo } from "./lib/pushToMongo.js" +import { pushToMongo } from "../lib/pushToMongo.js" let increasingList = (n) => Array.from(Array(n).keys()) let buildLinks = quantitativeComparisons => quantitativeComparisons.map(([element1, element2, distance]) => ({ source: element1, target: element2, distance: distance }))