diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-17 19:29:20 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-17 19:29:20 +0100 |
| commit | dc4588b1b134cb66b9e0842b96f0be96b724a049 (patch) | |
| tree | 304ac2527966cd0f939f4f23f3d2f18f1b00fc14 /src/components/Buttons | |
| parent | 37bc9d25deecb04b7970881d46551d5b33fe88df (diff) | |
chore: add a comment form to posts
Diffstat (limited to 'src/components/Buttons')
| -rw-r--r-- | src/components/Buttons/Button/Button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Buttons/Button/Button.tsx b/src/components/Buttons/Button/Button.tsx index c186d2a..8256e6b 100644 --- a/src/components/Buttons/Button/Button.tsx +++ b/src/components/Buttons/Button/Button.tsx @@ -9,7 +9,7 @@ const Button = ({ }: { children: ReactNode; clickHandler: any; - isDisabled: boolean; + isDisabled?: boolean; isPrimary?: boolean; }) => { const classes = `${styles.btn} ${ |
