aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/decorators
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/decorators')
-rw-r--r--frontend/src/components/decorators/CharLimit.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/decorators/CharLimit.js b/frontend/src/components/decorators/CharLimit.js
index fcf14d0..3d1d981 100644
--- a/frontend/src/components/decorators/CharLimit.js
+++ b/frontend/src/components/decorators/CharLimit.js
@@ -18,7 +18,7 @@ const Chars = styled.p`
const CharLimit = (props) => {
return (
- <Chars {...props} >{props.maxLength - props.content.length}/{props.maxLength}</Chars>
+ <Chars {...props}>{props.maxLength - props.content.length}/{props.maxLength}</Chars>
);
}