fix: remove isNaN

pull/4038/head
moxi 1 year ago committed by Aniket
parent eec22200e3
commit b725d5fcaf
  1. 2
      libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx

@ -689,7 +689,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
// strictly check condition on 0, false, except undefined, NaN.
// undefined: automatically throw "undefined" is not valid JSON
// NaN: read value from msg is `null`
if (msg === false || isNaN(msg) || msg === 0) msg = msg.toString()
if (msg === false || msg === 0) msg = msg.toString()
else if (!msg) msg = 'null'
if (React.isValidElement(msg)) {
return (

Loading…
Cancel
Save