Skip to content

Commit

Permalink
fix: Non-prose styling on Fields
Browse files Browse the repository at this point in the history
  • Loading branch information
areknawo committed May 6, 2024
1 parent 33865d1 commit f03cef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/fragments/input-field.tsx
Expand Up @@ -105,7 +105,7 @@ const CheckboxField: Component<InputFieldProps<"checkbox">> = (props) => {
};
const InputField = <T extends InputFieldType>(props: InputFieldProps<T>): JSX.Element => {
return (
<div class="flex flex-col gap-1 w-full">
<div class="flex flex-col gap-1 w-full not-prose">
<Switch>
<Match when={props.type === "text"} keyed>
<TextField {...(props as unknown as InputFieldProps<"text">)} />
Expand Down

0 comments on commit f03cef9

Please sign in to comment.