Skip to content

Commit

Permalink
refactor: Update import paths for components in stocks/message.tsx
Browse files Browse the repository at this point in the history
The import paths for the components used in stocks/message.tsx were updated to use absolute paths instead of relative paths. This change improves code clarity and aligns with the project's import conventions.
  • Loading branch information
rudrodip committed May 5, 2024
1 parent 19ce389 commit 3d3827b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/stocks/message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import { IconOpenAI, IconUser } from '@/components/ui/icons'
import { cn } from '@/lib/utils'
import { spinner } from './spinner'
import { CodeBlock } from '../ui/codeblock'
import { MemoizedReactMarkdown } from '../markdown'
import { CodeBlock } from '@/components/ui/codeblock'
import { MemoizedReactMarkdown } from '@/components/markdown'
import remarkGfm from 'remark-gfm'
import remarkMath from 'remark-math'
import { StreamableValue } from 'ai/rsc'
Expand Down

0 comments on commit 3d3827b

Please sign in to comment.