Skip to content

Commit 2ffa72a

Browse files
committed
Rename to <WebChatTheme>
1 parent 1d03c7b commit 2ffa72a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/fluent-theme/src/private/FluentThemeProvider.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Components } from 'botframework-webchat-component';
22
import React, { memo, type ReactNode } from 'react';
33

44
import SendBox from '../components/sendbox/SendBox';
5-
import WebchatTheme from '../components/Theme';
5+
import WebChatTheme from '../components/Theme';
66

77
const { ThemeProvider } = Components;
88

@@ -11,9 +11,9 @@ type Props = Readonly<{ children?: ReactNode | undefined }>;
1111
const sendBoxMiddleware = [() => () => () => SendBox];
1212

1313
const FluentThemeProvider = ({ children }: Props) => (
14-
<WebchatTheme>
14+
<WebChatTheme>
1515
<ThemeProvider sendBoxMiddleware={sendBoxMiddleware}>{children}</ThemeProvider>
16-
</WebchatTheme>
16+
</WebChatTheme>
1717
);
1818

1919
export default memo(FluentThemeProvider);

0 commit comments

Comments
 (0)