aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-02-08 21:55:41 +0200
committerGravatar GitHub <[email protected]>2021-02-08 21:55:41 +0200
commit32319542b26c5f7c05a9c66389be42cb0b998f41 (patch)
treef7a4b064d575249e230f5f1e3a201b47906acc4e /src/components
parentRemove trailing whitespaces (diff)
Fix CSS visibilty attribute
Co-authored-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ErrorMessage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ErrorMessage.tsx b/src/components/ErrorMessage.tsx
index 3342434..165f399 100644
--- a/src/components/ErrorMessage.tsx
+++ b/src/components/ErrorMessage.tsx
@@ -13,7 +13,7 @@ export default function ErrorMessage(props: ErrorMessageProps): JSX.Element | nu
font-size: 1.15rem;
line-height: 1.1rem;
margin: 1rem 0 0;
- visibilty: ${props.show ? "visible" : "hidden"}
+ visibility: ${props.show ? "visible" : "hidden"};
`;
return (