mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-30 21:01:54 +08:00
Fix max-statements-per-line lint warning
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
6f0652f525
commit
94b3e80891
@ -164,7 +164,10 @@ export function UserDialog(props: {
|
||||
/>
|
||||
<FormDialog
|
||||
open={props.open}
|
||||
onOpenChange={(open: boolean) => { if (!open) setErrorDialog(null); props.onOpenChange?.(open); }}
|
||||
onOpenChange={(open: boolean) => {
|
||||
if (!open) setErrorDialog(null);
|
||||
props.onOpenChange?.(open);
|
||||
}}
|
||||
trigger={props.trigger}
|
||||
title={props.type === 'edit' ? "Edit User" : "Create User"}
|
||||
formSchema={formSchema}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user