fix autocomplete filling in fields

This commit is contained in:
Lee
2024-04-19 22:32:11 +01:00
parent 1ed0e72316
commit 3be59f97c3
7 changed files with 44 additions and 25 deletions

View File

@ -57,13 +57,14 @@ export function LookupServer({ currentPlatform, currentServer }: LookupServerPro
description: (err as Error).message,
duration: 5000,
});
return setLoading(false);
setLoading(false);
}
};
return (
<form
className="flex flex-col gap-2 justify-center items-center mt-4"
autoComplete="off"
action={(form: FormData) => {
lookupServer(form.get("platform") as ServerPlatform, form.get("query") as string);
}}