diff options
author | Sebastian <sebasjm@gmail.com> | 2021-11-04 15:18:30 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-11-04 15:18:34 -0300 |
commit | 9ba0e8597dc0cb902bec3cd8f1090fc5746f790c (patch) | |
tree | 059245f98d4cfdb300c25afad8f294d07b0ddbca /packages/anastasis-webui/src/components/AsyncButton.tsx | |
parent | ae0a35df2b2934c517954d2a73af4cc6e1734e30 (diff) |
error notifications
Diffstat (limited to 'packages/anastasis-webui/src/components/AsyncButton.tsx')
-rw-r--r-- | packages/anastasis-webui/src/components/AsyncButton.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/anastasis-webui/src/components/AsyncButton.tsx b/packages/anastasis-webui/src/components/AsyncButton.tsx index af85016e8..bb2cc0fd8 100644 --- a/packages/anastasis-webui/src/components/AsyncButton.tsx +++ b/packages/anastasis-webui/src/components/AsyncButton.tsx @@ -26,7 +26,7 @@ import { useAsync } from "../hooks/async"; type Props = { children: ComponentChildren; - disabled: boolean; + disabled?: boolean; onClick?: () => Promise<void>; [rest: string]: any; }; |