From 32a007cf375d510c4c7cd266910926d945fe4cfa Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 28 Feb 2022 16:55:07 +0900 Subject: [PATCH] Minor fix to front-end --- front_end/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front_end/src/main.rs b/front_end/src/main.rs index 3c6f8f5..9a55e16 100644 --- a/front_end/src/main.rs +++ b/front_end/src/main.rs @@ -90,7 +90,7 @@ impl Component for Slot { ctx.props() .state .as_ref() - .replace(shared.board.as_ref().borrow_mut()[idx as usize]); + .replace(shared.board.as_ref().borrow()[idx as usize]); } } true