From 72ee63ca0fe606b2c745e79e9ba98ce5d14309d3 Mon Sep 17 00:00:00 2001 From: Psytew Date: Mon, 24 Oct 2022 07:54:45 -0400 Subject: [PATCH] fix: build error due to FindLcm (#1223) Co-authored-by: patrickwestervelt --- 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) => {