From 6634b445ba55e69e626c4471e1c6ea86777cbc6e Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Thu, 17 Feb 2022 16:04:48 +0100 Subject: [PATCH] Add JS notice --- components/REPL/REPLHistory.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/components/REPL/REPLHistory.tsx b/components/REPL/REPLHistory.tsx index 9e16f26..2fc7c03 100644 --- a/components/REPL/REPLHistory.tsx +++ b/components/REPL/REPLHistory.tsx @@ -82,11 +82,14 @@ const REPLHistory: NextPage = ({history, inputRef}) => { }; return
- { history.map((value, idx) => { - return
+ { history.map((value, idx) =>
{parseLine(value)} -
;} - )} +
) + } + {}
; };