fix: Removed accidental development feature in unit spawn men

Also bumped version to 2.0.1
This commit is contained in:
Davide Passoni 2025-03-27 15:46:32 +01:00
parent 55f75ff149
commit ffddb9cd1e
2 changed files with 2 additions and 24 deletions

View File

@ -469,29 +469,7 @@ export function SpawnContextMenu(props: {}) {
);
})}
</div>
<div className="flex flex-wrap gap-1">
{tags.groundunit
.sort()
.map((type) => {
return (
<div
key={type}
data-selected={selectedType === type}
className={`
cursor-pointer rounded-full bg-olympus-900
px-2 py-0.5 text-xs font-bold text-olympus-50
data-[selected='true']:bg-blue-500
data-[selected='true']:text-gray-200
`}
onClick={() => {
selectedType === type ? setSelectedType(null) : setSelectedType(type);
}}
>
{type}
</div>
);
})}
</div>
<div
className={`
flex max-h-[350px] flex-col gap-1 overflow-y-scroll

View File

@ -1,3 +1,3 @@
{
"version": "v2.0.0"
"version": "v2.0.1"
}