Style fix

This commit is contained in:
Limo Saplf
2019-08-31 21:51:54 +08:00
parent b51ae824c7
commit ab3943d7c0
4 changed files with 13 additions and 1 deletions

View File

@@ -33,7 +33,10 @@ const Page: React.FC<DispatchProp & CheckModelState> = ({
if (pageState === PageState.Failure) {
return (
<div onClick={() => dispatch({ type: 'check/load' })}></div>
<div
onClick={() => dispatch({ type: 'check/load' })}
className={styles.error}
>{formatMessage({ id: 'app.error' })}</div>
);
}