Don't need to return on success.

This commit is contained in:
Matthew Stratford 2020-03-29 13:59:53 +01:00
parent 5c054f7abd
commit 46d85293a6

View file

@ -66,7 +66,7 @@ const SessionHandler: React.FC<{ }> = function () {
);
}
return (<p>loaded</p>);
return (null);
};
export default SessionHandler;