Skip to content

Commit 711b3a4

Browse files
committed
chore(docs): lint fixes (import order, formatting)
1 parent 9e2ad1f commit 711b3a4

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

apps/docs/components/ai/ask-ai-panel.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@ export function AskAIPanel({ locale, open, onClose }: AskAIPanelProps) {
180180
})}
181181

182182
{error && (
183-
<p className='text-[var(--text-muted)] text-sm'>Something went wrong. Please try again.</p>
183+
<p className='text-[var(--text-muted)] text-sm'>
184+
Something went wrong. Please try again.
185+
</p>
184186
)}
185187
</div>
186188

apps/docs/components/ai/ask-ai.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use client'
22

33
import { useRef, useState } from 'react'
4-
import dynamic from 'next/dynamic'
54
import { MessageCircle } from 'lucide-react'
5+
import dynamic from 'next/dynamic'
66

77
const AskAIPanel = dynamic(() => import('./ask-ai-panel').then((m) => m.AskAIPanel), {
88
ssr: false,

0 commit comments

Comments
 (0)