Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 20, 2025
1 parent bf1b311 commit 8735e27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ee/tabby-ui/app/search/components/user-message-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export function UserMessageSection({
const { contextInfo, fetchingContextInfo } = useContext(SearchContext)
const { supportsOnApplyInEditorV2 } = useContext(ChatContext)
const contentLen = message.content?.length
const fontSizeClassname = contentLen > 400 ? 'text-base' : contentLen > 200 ? 'text-lg' : 'text-xl'
const fontSizeClassname =
contentLen > 400 ? 'text-base' : contentLen > 200 ? 'text-lg' : 'text-xl'

return (
<div className={cn('font-semibold', className)} {...props}>
Expand Down

0 comments on commit 8735e27

Please sign in to comment.