Merge branch 'main' into staging

This commit is contained in:
Justin Edmund 2023-07-04 02:20:37 -07:00 committed by GitHub
commit 29757d48fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
})