Skip to content

Commit

Permalink
fix: add padding to oauth app forms (#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedadams authored Nov 18, 2024
1 parent 57964ec commit 2218db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/admin/app/components/oauth-apps/OAuthAppForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function OAuthAppForm({ type, onSubmit, isLoading }: OAuthAppFormProps) {

return (
<Form {...form}>
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
<form onSubmit={handleSubmit} className="flex flex-col gap-4 p-1">
{spec.steps.map((s, i) => (
<Fragment key={i}>{renderStep(s)}</Fragment>
))}
Expand Down

0 comments on commit 2218db5

Please sign in to comment.