diff options
Diffstat (limited to 'src/components/Form/Form.tsx')
| -rw-r--r-- | src/components/Form/Form.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Form/Form.tsx b/src/components/Form/Form.tsx index 048219c..74a4efb 100644 --- a/src/components/Form/Form.tsx +++ b/src/components/Form/Form.tsx @@ -10,7 +10,7 @@ const Form = ({ submitHandler: any; modifier?: string; }) => { - const withModifier = modifier ? `wrapper--${modifier}` : ''; + const withModifier = modifier ? styles[`wrapper--${modifier}`] : ''; const classes = `${styles.wrapper} ${withModifier}`; return ( |
