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)} -
;} - )} +
) + } + {}
; };