Skip to content

Commit 07bee8b

Browse files
style: format code with prettier and fix lint issues
1 parent c86f815 commit 07bee8b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/pages/Profile.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Profile = () => {
1616
const [isImageSafe, setImageSafe] = useState(false);
1717
const { authState, dispatchAuth } = useAuth();
1818
const [loading, setLoading] = useState(false);
19-
const [age, setAge] = useState('')
19+
const [age, setAge] = useState('');
2020
const { logout } = useKindeAuth();
2121

2222
const aboutRef = useRef(null);
@@ -221,7 +221,7 @@ const Profile = () => {
221221
min="12"
222222
max="120"
223223
onChange={(e) => {
224-
setAge(e.target.value)
224+
setAge(e.target.value);
225225
}}
226226
/>
227227
</div>

0 commit comments

Comments
 (0)