From fe668d22084b61e1f6b9a8af878949ce03952a32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ildik=C3=B3=20Czeller?= Date: Tue, 19 Dec 2023 11:38:19 +0100 Subject: [PATCH] fix missing import in 6, 10 discs --- .../games/discs-turn-or-remove/discs-turn-or-remove.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/games/discs-turn-or-remove/discs-turn-or-remove.js b/src/components/games/discs-turn-or-remove/discs-turn-or-remove.js index aa6f4c83..838cc3f5 100644 --- a/src/components/games/discs-turn-or-remove/discs-turn-or-remove.js +++ b/src/components/games/discs-turn-or-remove/discs-turn-or-remove.js @@ -1,6 +1,6 @@ import React, { useState } from 'react'; import { strategyGameFactory } from '../strategy-game'; -import { range, isEqual, random, sample, difference } from 'lodash'; +import { range, isEqual, random, sample, difference, filter } from 'lodash'; const generateNewBoard6 = () => { const discCount = random(3, 6);