mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 01:15:28 +00:00
fix: modify account, and create bot forms not being submitted (#697)
This commit is contained in:
@@ -43,7 +43,7 @@ export function CreateBotModal({ onClose, onCreate }: Props) {
|
||||
confirmation: true,
|
||||
palette: "accent",
|
||||
onClick: async () => {
|
||||
await handleSubmit(onSubmit);
|
||||
await handleSubmit(onSubmit)();
|
||||
return true;
|
||||
},
|
||||
children: <Text id="app.special.modals.actions.create" />,
|
||||
|
||||
@@ -75,7 +75,7 @@ export function ModifyAccountModal({ onClose, field }: Props) {
|
||||
{
|
||||
confirmation: true,
|
||||
onClick: async () => {
|
||||
await handleSubmit(onSubmit);
|
||||
await handleSubmit(onSubmit)();
|
||||
return true;
|
||||
},
|
||||
children:
|
||||
|
||||
Reference in New Issue
Block a user