aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Radio.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/Radio.tsx')
-rw-r--r--src/components/ui/Radio.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/ui/Radio.tsx b/src/components/ui/Radio.tsx
index 594ea70e4..a033a5fe0 100644
--- a/src/components/ui/Radio.tsx
+++ b/src/components/ui/Radio.tsx
@@ -10,7 +10,6 @@ type Props = {
10 showLabel: boolean; 10 showLabel: boolean;
11}; 11};
12 12
13@observer
14class Radio extends Component<Props> { 13class Radio extends Component<Props> {
15 static defaultProps = { 14 static defaultProps = {
16 focus: false, 15 focus: false,
@@ -74,4 +73,4 @@ class Radio extends Component<Props> {
74 } 73 }
75} 74}
76 75
77export default Radio; 76export default observer(Radio);