Skip to content

Commit

Permalink
remove unnecessary destructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
kurukimi committed Jun 17, 2024
1 parent b393b04 commit e7454bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/jira/components/JiraIssueAutoComplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const JiraIssueAutoComplete = <T extends FieldValues>({
...(pagedIssueData || []),
...(searchedIssueData ? [searchedIssueData] : []),
];
const keyToSummary = { ...issueKeyToSummary(queriedKeys) };
const keyToSummary = issueKeyToSummary(queriedKeys);
const queriedOptions = [
...new Set([
...options.slice(0, (dataPages?.pages.length || 1) * jiraQueryMaxResults),
Expand Down

0 comments on commit e7454bb

Please sign in to comment.