Skip to content

Commit

Permalink
fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusbsilva137 committed Nov 18, 2024
1 parent d504306 commit e0ac2c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/meteor/lib/mapLivechatContactConflicts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const sampleContact: Serialized<ILivechatContact> = {
name: 'Contact Name',
createdAt: '',
_updatedAt: '',
channels: [],
};

describe('Map Livechat Contact Conflicts', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core-typings/src/ILivechatContact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface ILivechatContact extends IRocketChatRecord {
unknown?: boolean;
conflictingFields?: ILivechatContactConflictingField[];
customFields?: Record<string, string | unknown>;
channels?: ILivechatContactChannel[];
channels: ILivechatContactChannel[];
createdAt: Date;
lastChat?: {
_id: string;
Expand Down

0 comments on commit e0ac2c9

Please sign in to comment.