Fixed object destructuring issue
All checks were successful
Build & Deploy OS League Tools / build-and-deploy (push) Successful in 59s

This commit is contained in:
2026-01-22 00:44:02 +00:00
parent 7a32d0e874
commit 7b729c5cb2

View File

@@ -205,7 +205,7 @@ export default function Planner() {
<div className='flex flex-col gap-1'>
{plannerRegions.regions.map(region => {
const isSelected = selectedRegions.has(region.id);
const isDefault = region.isDefault;
const { isDefault } = region;
const badge = getRegionBadge(region.name);
return (