Skip to content

Commit af3ead7

Browse files
authored
Merge pull request #1281 from CruGlobal/8502-typescript-error
[MPDX-8502] Fix TypeScript error from new contact filter added in staging
2 parents fa827d8 + bd8f6dc commit af3ead7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/Shared/Filters/FilterPanelTypes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import {
77
type ContactFilterKey = keyof ContactFilterSetInput;
88
type ContactFilterValue = ContactFilterSetInput[ContactFilterKey];
99
type ReportContactFilterKey = keyof ReportContactFilterSetInput;
10-
type ReportContactFilterValue = ReportContactFilterSetInput[ContactFilterKey];
10+
type ReportContactFilterValue =
11+
ReportContactFilterSetInput[ReportContactFilterKey];
1112
type TaskFilterKey = keyof TaskFilterSetInput;
1213
type TaskFilterValue = TaskFilterSetInput[TaskFilterKey];
1314
export type FilterKey =

0 commit comments

Comments
 (0)