mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add toggle to hide email
This commit is contained in:
parent
eb54bd588a
commit
a2a1323e01
1 changed files with 15 additions and 9 deletions
|
@ -21,6 +21,7 @@ export default function UserPage() {
|
||||||
const [errors] = useState({});
|
const [errors] = useState({});
|
||||||
const pathname = usePathname();
|
const pathname = usePathname();
|
||||||
const [waitingSave, setWaitingSave] = useState(false);
|
const [waitingSave, setWaitingSave] = useState(false);
|
||||||
|
const [showEmail, setShowEmail] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
loadUser();
|
loadUser();
|
||||||
|
@ -127,15 +128,20 @@ export default function UserPage() {
|
||||||
onValueChange={setName}
|
onValueChange={setName}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<p>Email</p>
|
||||||
|
{showEmail && (
|
||||||
<Input
|
<Input
|
||||||
label="Email"
|
label="Email"
|
||||||
labelPlacement="outside"
|
|
||||||
name="email"
|
name="email"
|
||||||
placeholder="Enter an email"
|
placeholder="Enter an email"
|
||||||
type="text"
|
type="text"
|
||||||
value={email}
|
value={email}
|
||||||
onValueChange={setEmail}
|
onValueChange={setEmail}
|
||||||
/>
|
/>
|
||||||
|
)}
|
||||||
|
<Button size="sm" onPress={() => setShowEmail(!showEmail)}>
|
||||||
|
{showEmail ? "Hide Email" : "Show Email"}
|
||||||
|
</Button>
|
||||||
|
|
||||||
<p>Bio</p>
|
<p>Bio</p>
|
||||||
<Editor content={bio} setContent={setBio} />
|
<Editor content={bio} setContent={setBio} />
|
||||||
|
|
Loading…
Reference in a new issue