changed typo error

This commit is contained in:
2025-07-25 12:13:36 +02:00
parent 7f74a740ae
commit e1ac9db05c

View File

@@ -18,7 +18,7 @@ const LoginCard: React.FC<LoginCardProps> = ({ onClose, changeAuth }) => {
e.preventDefault();
setError("");
try {
const response = await fetch("http://45.133.75.67/:5002/api/login", {
const response = await fetch("http://45.133.75.67:5002/api/login", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ username, password }),