File tree Expand file tree Collapse file tree
packages/react-use-intercom/src Expand file tree Collapse file tree Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export type IntercomMethod =
249249 | 'showSpace'
250250 | 'showNews'
251251 | 'showTicket'
252- | 'showConversation'
252+ | 'showConversation' ;
253253
254254export 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 ;
You can’t perform that action at this time.
0 commit comments