Disablt auto complete in field inputs

This commit is contained in:
Braydon 2024-04-19 18:18:27 -04:00
parent 98adb3d22d
commit 9a78a6988b
2 changed files with 2 additions and 0 deletions

@ -40,6 +40,7 @@ const PlayerSearch = ({ query }: PlayerSearchProps): ReactElement => {
defaultValue={query} defaultValue={query}
required required
maxLength={36} maxLength={36}
autoComplete="off"
/> />
</div> </div>
<MinecraftButton type="submit">Search</MinecraftButton> <MinecraftButton type="submit">Search</MinecraftButton>

@ -85,6 +85,7 @@ const ServerSearch = ({
defaultValue={hostname} defaultValue={hostname}
required required
maxLength={36} maxLength={36}
autoComplete="off"
/> />
</div> </div>
</div> </div>