Skip to content

Commit 0c6844f

Browse files
authored
fix(auth): fix linter errors in Login.jsx
1 parent 12dbbfa commit 0c6844f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ui/views/Login/Login.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ export default function UserProfile() {
2424
const [username, setUsername] = useState('');
2525
const [password, setPassword] = useState('');
2626
const [message, setMessage] = useState('');
27-
const [success, setSuccess] = useState(false);
28-
const [gitAccountError, setGitAccountError] = useState(false);
27+
const [, setGitAccountError] = useState(false);
2928
const [isLoading, setIsLoading] = useState(false);
3029

3130
const navigate = useNavigate();

0 commit comments

Comments
 (0)