aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components/AsyncButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/anastasis-webui/src/components/AsyncButton.tsx')
-rw-r--r--packages/anastasis-webui/src/components/AsyncButton.tsx2
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;
};