aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pages/Profile/Profile.tsx2
-rw-r--r--src/pages/Profile/Registration.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/Profile/Profile.tsx b/src/pages/Profile/Profile.tsx
index bbf55f1..83acb30 100644
--- a/src/pages/Profile/Profile.tsx
+++ b/src/pages/Profile/Profile.tsx
@@ -39,7 +39,7 @@ const Profile: React.FC<PropTypes> = ({ user, setUser }) => {
const [profileSolutions, setProfileSolutions] = useState<Solution[]>([]);
- const handleLogout = () => {
+ const handleLogout = (): void => {
setUser({ username: 'anonymous', id: null });
localStorage.clear();
};
diff --git a/src/pages/Profile/Registration.tsx b/src/pages/Profile/Registration.tsx
index 30e357d..a5e0f3e 100644
--- a/src/pages/Profile/Registration.tsx
+++ b/src/pages/Profile/Registration.tsx
@@ -30,7 +30,7 @@ const Registration: React.FC<PropTypes> = ({ setUser }) => {
setIsRememberMe(event.target.checked);
};
- const handleSubmit = () => {
+ const handleSubmit = (): void => {
if (username !== '') {
post('users/', { username })
.then(response => {