We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c86f815 commit 07bee8bCopy full SHA for 07bee8b
1 file changed
client/src/pages/Profile.jsx
@@ -16,7 +16,7 @@ const Profile = () => {
16
const [isImageSafe, setImageSafe] = useState(false);
17
const { authState, dispatchAuth } = useAuth();
18
const [loading, setLoading] = useState(false);
19
- const [age, setAge] = useState('')
+ const [age, setAge] = useState('');
20
const { logout } = useKindeAuth();
21
22
const aboutRef = useRef(null);
@@ -221,7 +221,7 @@ const Profile = () => {
221
min="12"
222
max="120"
223
onChange={(e) => {
224
- setAge(e.target.value)
+ setAge(e.target.value);
225
}}
226
/>
227
</div>
0 commit comments