Skip to content

Commit 529dcc3

Browse files
committed
🔧 force esbuild version
1 parent 100c90f commit 529dcc3

File tree

6 files changed

+996
-991
lines changed

6 files changed

+996
-991
lines changed

examples/react-embed-front-chat/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const iframeStyle = {
1919
* Component.
2020
*/
2121

22-
export function App() {
22+
function App() {
2323
const onLoadIframe = async (event: SyntheticEvent<HTMLIFrameElement>) => {
2424
const iframe = event.target as HTMLIFrameElement;
2525

examples/react-use-front-chat-boot/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const chatId = '<CHAT_ID_REQUIRED>';
1212
* Component.
1313
*/
1414

15-
export function App() {
15+
function App() {
1616
const {frontChat, initialize, isInitialized} = useFrontChatBoot(document.body);
1717

1818
const [isWindowVisible, setIsWindowVisible] = useState(false);

examples/react-use-front-chat/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const chatId = '<CHAT_ID_REQUIRED>';
1010
* Component.
1111
*/
1212

13-
export function App() {
13+
function App() {
1414
const {isInitialized} = useFrontChat(chatId);
1515

1616
return <div>isInitialized: {isInitialized ? 'True' : 'False'}</div>;

examples/react-verified-user/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const userHash = hmac.update(userId).digest('hex');
2929
* Component.
3030
*/
3131

32-
export function App() {
32+
function App() {
3333
const {frontChat, initialize, isInitialized} = useFrontChatBoot(document.body);
3434

3535
const [isWindowVisible, setIsWindowVisible] = useState(false);

0 commit comments

Comments
 (0)