diff --git a/packages/components/src/ui/input/Input.tsx b/packages/components/src/ui/input/Input.tsx index d2d00d0ca..d705d4ade 100644 --- a/packages/components/src/ui/input/Input.tsx +++ b/packages/components/src/ui/input/Input.tsx @@ -23,7 +23,7 @@ export const Input = forwardRef< "border border-border", "placeholder:text-theme-placeholder-text dark:bg-zinc-700/[0.15] dark:text-zinc-200", "hover:border-accent/60", - props.type === "password" ? "font-mono placeholder:font-sans" : "font-sans", + props.type === "password" && "font-mono placeholder:font-sans", "w-full", className, )} diff --git a/packages/components/src/ui/toast/index.tsx b/packages/components/src/ui/toast/index.tsx index 9e0af1713..e22b9b72b 100644 --- a/packages/components/src/ui/toast/index.tsx +++ b/packages/components/src/ui/toast/index.tsx @@ -10,7 +10,7 @@ export const Toaster = ({ ...props }: ToasterProps) => (