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 ( return (
<Form className="w-full max-w-xl"> <div className="w-full max-w-xl">
<Form>
<Input <Input
type="password" type="password"
onChange={(e) => setPassword(e.target.value)} onChange={(e) => setPassword(e.target.value)}
@@ -36,6 +37,7 @@ const ManagerPassword = ({ onSubmit }: Props) => {
/> />
<Button onClick={handleSubmit}>Submit</Button> <Button onClick={handleSubmit}>Submit</Button>
</Form> </Form>
</div>
) )
} }