Skip to content

Commit 73a0e18

Browse files
committed
lint
1 parent 8d5d130 commit 73a0e18

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/react-use-intercom/src/provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export const IntercomProvider: React.FC<
300300
showSpace,
301301
showNews,
302302
showTicket,
303-
showConversation
303+
showConversation,
304304
};
305305
}, [
306306
boot,
@@ -321,7 +321,7 @@ export const IntercomProvider: React.FC<
321321
showSpace,
322322
showNews,
323323
showTicket,
324-
showConversation
324+
showConversation,
325325
]);
326326

327327
return (

packages/react-use-intercom/src/types.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export type IntercomMethod =
249249
| 'showSpace'
250250
| 'showNews'
251251
| 'showTicket'
252-
| 'showConversation'
252+
| 'showConversation';
253253

254254
export type RawIntercomProps = RawMessengerAttributes & RawDataAttributes;
255255

@@ -449,17 +449,17 @@ export type IntercomContextValues = {
449449
*/
450450
showNews: (newsId: number) => void;
451451
/**
452-
* If you would like to trigger a ticket in the Messenger, you can use the showTicket method.
453-
*
452+
* If you would like to trigger a ticket in the Messenger, you can use the showTicket method.
453+
*
454454
* The ticket will be shown within the Messenger, and clicking the Messenger back button will return to the previous context.
455-
*
455+
*
456456
* If the Messenger is closed when the method is called, it will be opened first and then the ticket will be shown.
457457
* @see {@link https://developers.intercom.com/installing-intercom/web/methods/#intercomshowticket-ticketid}
458458
*/
459459
showTicket: (ticketId: number) => void;
460460
/**
461461
* You can show a conversation programatically in the Messenger by calling showConversation method
462-
*
462+
*
463463
* @see {@link https://developers.intercom.com/installing-intercom/web/methods/#intercomshowconversation-conversationid}
464464
*/
465465
showConversation: (conversationId: number) => void;

0 commit comments

Comments
 (0)