Skip to content

Commit 8c02c83

Browse files
committed
Fix lint error
1 parent e90ece3 commit 8c02c83

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

packages/module/src/ChatbotConversationHistoryNav/LoadingState.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ import type { FunctionComponent } from 'react';
44
export const LoadingState: FunctionComponent<SkeletonProps> = ({ screenreaderText, ...rest }: SkeletonProps) => (
55
<div className="pf-chatbot__history-loading">
66
<div className="pf-chatbot__history-loading-block">
7-
<Skeleton
8-
screenreaderText={screenreaderText ?? 'Loading chatbot chat history'}
9-
fontSize="3xl"
10-
{...rest}
11-
/>
7+
<Skeleton screenreaderText={screenreaderText ?? 'Loading chatbot chat history'} fontSize="3xl" {...rest} />
128
</div>
139
<div className="pf-chatbot__history-loading-block">
1410
<Skeleton fontSize="sm" width="70%" {...rest} />

0 commit comments

Comments
 (0)