We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90ece3 commit 8c02c83Copy full SHA for 8c02c83
1 file changed
packages/module/src/ChatbotConversationHistoryNav/LoadingState.tsx
@@ -4,11 +4,7 @@ import type { FunctionComponent } from 'react';
4
export const LoadingState: FunctionComponent<SkeletonProps> = ({ screenreaderText, ...rest }: SkeletonProps) => (
5
<div className="pf-chatbot__history-loading">
6
<div className="pf-chatbot__history-loading-block">
7
- <Skeleton
8
- screenreaderText={screenreaderText ?? 'Loading chatbot chat history'}
9
- fontSize="3xl"
10
- {...rest}
11
- />
+ <Skeleton screenreaderText={screenreaderText ?? 'Loading chatbot chat history'} fontSize="3xl" {...rest} />
12
</div>
13
14
<Skeleton fontSize="sm" width="70%" {...rest} />
0 commit comments