From 332a492971e7803b25a7d4e0a22d931efcd24417 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Thu, 23 Feb 2023 23:15:20 +0100 Subject: [PATCH] Fixed checkmarks showing in menu all the time --- src/truth-table.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 377ab15..287540f 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -341,11 +341,12 @@ interface SingleMenuItem { const SingleMenuItem: Component = ({ option, currentValue, onClick }) => { const isSelected = () => currentValue()?.value === option.value; + console.log(currentValue()?.value, option.value, isSelected()); return ( );