Skip to content

Commit

Permalink
Fix NextEditable expecting array instead of set
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 authored and ThiefMaster committed Nov 24, 2022
1 parent 97b63f7 commit 3b7a87c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function NextEditableDisplay({eventId, editableType, onClose, fileTypes, managem
: [e.contributionTitle, e.contributionCode]
}
onChangeFilters={onChangeFilters}
onChangeList={result => setFilteredSet(new Set(result.map(e => e.id)))}
onChangeList={setFilteredSet}
/>
</div>
<Dimmer.Dimmable styleName="filtered-editables" dimmed={loading}>
Expand Down

0 comments on commit 3b7a87c

Please sign in to comment.