diff --git a/components/raids/RaidCombobox/index.tsx b/components/raids/RaidCombobox/index.tsx index 045846d3..dad4a3b8 100644 --- a/components/raids/RaidCombobox/index.tsx +++ b/components/raids/RaidCombobox/index.tsx @@ -112,6 +112,7 @@ const RaidCombobox = (props: Props) => { useEffect(() => { const sections: [RaidGroup[], RaidGroup[], RaidGroup[]] = [[], [], []] + props.raidGroups.forEach((group) => { if (group.section > 0) sections[group.section - 1].push(group) })