Skip to content

Commit

Permalink
fix(FiltersPanelApplied): fixed 500 on applied preset
Browse files Browse the repository at this point in the history
  • Loading branch information
troff8 authored and Troff8 committed Jul 3, 2023
1 parent 7ff2c7a commit 0a84d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FiltersPanelApplied/FiltersPanelApplied.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const FiltersPanelApplied: React.FC<FiltersPanelAppliedProps> = ({
}

if (queryState.state.length && states?.length) {
appliedMap[tr('State')] = queryState.state.map((s) => statesMap[s].title).filter(Boolean);
appliedMap[tr('State')] = queryState.state.map((s) => statesMap[s]?.title).filter(Boolean);
}

if (queryState.issuer.length && issuers?.length) {
Expand Down

0 comments on commit 0a84d99

Please sign in to comment.