fix build error

This commit is contained in:
RandyJC
2025-12-09 11:50:43 +01:00
parent 684a6a3c12
commit dba5024207

View File

@@ -27,7 +27,8 @@ const ManagerPassword = ({ onSubmit }: Props) => {
})
return (
<Form className="w-full max-w-xl">
<div className="w-full max-w-xl">
<Form>
<Input
type="password"
onChange={(e) => setPassword(e.target.value)}
@@ -35,7 +36,8 @@ const ManagerPassword = ({ onSubmit }: Props) => {
placeholder="Manager password"
/>
<Button onClick={handleSubmit}>Submit</Button>
</Form>
</Form>
</div>
)
}