From fb9b14ec519bdc9a42e2cb72209e67f4d48a3598 Mon Sep 17 00:00:00 2001 From: Jorik Schellekens Date: Mon, 1 Jun 2020 15:35:25 +0100 Subject: [PATCH] Remove superflous list --- .../views/elements/StyledCheckbox.tsx | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/src/components/views/elements/StyledCheckbox.tsx b/src/components/views/elements/StyledCheckbox.tsx index b4e40e4b64..e1c9a5135d 100644 --- a/src/components/views/elements/StyledCheckbox.tsx +++ b/src/components/views/elements/StyledCheckbox.tsx @@ -40,19 +40,17 @@ export default class StyledCheckbox extends React.PureComponent public render() { const { children, className, ...otherProps } = this.props; // 56^10 so unlikely chance of collision. - return [ - - - - - ] + return + + + } } \ No newline at end of file