From 71b3bc1647762ec307ef5b2590a79b51b4e1c726 Mon Sep 17 00:00:00 2001 From: patrickwestervelt Date: Sun, 23 Oct 2022 10:40:51 -0400 Subject: [PATCH] bug: fix build error due to FindLcm --- Maths/FindLcm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maths/FindLcm.js b/Maths/FindLcm.js index c20c867a48..e75a89fd76 100644 --- a/Maths/FindLcm.js +++ b/Maths/FindLcm.js @@ -11,7 +11,7 @@ 'use strict' -import { findHCF } from './findHcf' +import { findHCF } from './FindHcf' // Find the LCM of two numbers. const findLcm = (num1, num2) => {