From 7c40ba0e617b5932559c39fb879d0de6372e04e8 Mon Sep 17 00:00:00 2001 From: JP1998 Date: Mon, 8 Apr 2019 09:22:49 +0200 Subject: [PATCH] Fix a bug with the original sign in page not rendering --- js/CommonComponents.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/CommonComponents.js b/js/CommonComponents.js index 3fa9cad..6bd133f 100644 --- a/js/CommonComponents.js +++ b/js/CommonComponents.js @@ -261,5 +261,7 @@ function Hint(props) { return (

{ props.hint }

); + } else { + return null; } }