Skip to content

Commit bd8f6dc

Browse files
committed
Fix TypeScript error from new contact filter added in staging
1 parent fa827d8 commit bd8f6dc

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)