Skip to content

Commit

Permalink
fix(docs): update docs to use enterprise plan (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanwinters committed Aug 8, 2022
1 parent f4383c0 commit 7f1b935
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WITH_WEB_CHAT.MD
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const MyLocation = ({ location, createWebChatInstance }) => {
integrationID: 'XXXX',
region: 'XXXX',
serviceInstanceID: 'XXXX',
// subscriptionID: 'only on enterprise plans',
onLoad: onWebChatLoad
};

Expand Down Expand Up @@ -88,6 +89,7 @@ class MyLocation extends Component {
integrationID: 'XXXX',
region: 'XXXX',
serviceInstanceID: 'XXXX',
// subscriptionID: 'only on enterprise plans',
onLoad: this.onWebChatLoad
};

Expand Down Expand Up @@ -184,6 +186,7 @@ const MyLocation = ({ location, createWebChatInstance }: MyLocationProps) => {
integrationID: 'XXXX',
region: 'XXXX',
serviceInstanceID: 'XXXX',
// subscriptionID: 'only on enterprise plans',
onLoad: onWebChatLoad
};

Expand Down
1 change: 1 addition & 0 deletions src/__tests__/WebChatContainer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { render } from '@testing-library/react';
import { WebChatContainer, WebChatContainerProps } from '../WebChatContainer';
import { TEST_INSTANCE_CONFIG, waitForText, waitForWebChat } from '../test/testUtils';
import { WebChatInstance } from '../types/WebChatInstance';
import { CustomResponseEvent } from '../types/CustomResponseEvent';

jest.setTimeout(20000);

Expand Down

0 comments on commit 7f1b935

Please sign in to comment.