Skip to content

Commit

Permalink
🐛 fix: fix recursive deps
Browse files Browse the repository at this point in the history
  • Loading branch information
meganjohnson96 committed Jun 16, 2023
1 parent bb8e2b3 commit c90ddc3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
"@react-spring/web": "^9",
"ahooks": "^3",
"antd": "^5",
"antd-style": "^3",
"chroma-js": "^2",
"copy-to-clipboard": "^3",
"dayjs": "^1",
Expand Down Expand Up @@ -114,6 +113,7 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-v8": "latest",
"antd-style": "^3",
"commitlint": "^17",
"concurrently": "^8",
"cross-env": "^7",
Expand Down
4 changes: 3 additions & 1 deletion src/ChatItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { Alert, type AlertProps } from 'antd';
import { Loader2 } from 'lucide-react';
import { ReactNode, memo } from 'react';

import { Avatar, Icon, Markdown } from '@/index';
import Avatar from '@/Avatar';
import Icon from '@/Icon';
import Markdown from '@/Markdown';
import type { DivProps } from '@/types';
import { MetaData } from '@/types/meta';
import { formatTime } from '@/utils/formatTime';
Expand Down
1 change: 0 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { name } from './package.json';

export default defineConfig({
test: {
setupFiles: './tests/test-setup.ts',
environment: 'jsdom',
globals: true,
alias: {
Expand Down

1 comment on commit c90ddc3

@vercel
Copy link

@vercel vercel bot commented on c90ddc3 Jun 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lobe-ui – ./

lobe-ui.vercel.app
lobe-ui-git-master-lobehub.vercel.app
ui.lobehub.com
lobe-ui-lobehub.vercel.app

Please sign in to comment.