Skip to content

Commit 143ce7f

Browse files
committed
feat: added hidden prop to label input
1 parent 06509a2 commit 143ce7f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/app/about/components/update-user-modal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function UpdateUserModal() {
2727
});
2828

2929
const [shouldUpdatePassword, setShouldUpdatePassword] =
30-
useState<boolean>(false);
30+
useState<boolean>(true);
3131

3232
const handleSetShouldUpdatePassword = () =>
3333
setShouldUpdatePassword(!shouldUpdatePassword);

src/app/components/input-form.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@ export default function InputForm({
1212
handleOnChange,
1313
name,
1414
label,
15+
hidden = false,
1516
...rest
1617
}: InputFormProps) {
1718
return (
1819
<div className="mb-4">
19-
<label className="block text-gray-700 text-sm font-bold mb-2">
20+
<label
21+
hidden={hidden}
22+
className="block text-gray-700 text-sm font-bold mb-2"
23+
>
2024
{label}
2125
</label>
2226

2327
<input
2428
{...rest}
29+
hidden={hidden}
2530
onChange={handleOnChange}
2631
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
2732
id={id}

0 commit comments

Comments
 (0)