Skip to content

Commit

Permalink
Fixing types
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner committed Sep 1, 2022
1 parent 8c7c3e8 commit 11f410f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const defaultProps = {
caseServices: {},
caseUserActions: [],
userProfiles: new Map(),
currentUserProfile: undefined,
connectors: [],
actionsNavigation: { href: jest.fn(), onClick: jest.fn() },
getRuleDetailsHref: jest.fn(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type SupportedUserActionTypes = keyof Omit<typeof ActionTypes, Unsupporte
export interface UserActionBuilderArgs {
caseData: Case;
userProfiles: Map<string, UserProfileWithAvatar>;
currentUserProfile?: UserProfileWithAvatar;
currentUserProfile?: CurrentUserProfile;
externalReferenceAttachmentTypeRegistry: ExternalReferenceAttachmentTypeRegistry;
persistableStateAttachmentTypeRegistry: PersistableStateAttachmentTypeRegistry;
userAction: CaseUserActions;
Expand Down

0 comments on commit 11f410f

Please sign in to comment.