We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While getting familiar with the library codebase I realized a message regarding a Circular Dependency when running npm run dist:
npm run dist
Circular dependency: src/index.ts -> src/ChatBubble/index.ts -> src/ChatBubble/ChatBubble.tsx -> src/ChatBubble/ChatBubbleAvatar.tsx -> src/index.ts
This is caused by the ChatBubbleAvatar importing Avatar from src/index.ts instead of src/Avatar.
The current import looks like this:
import { Avatar, AvatarProps } from '..'
When they should be:
import Avatar, { AvatarProps } from '../Avatar'
I am making a PR to fix it right now.
The text was updated successfully, but these errors were encountered:
Thanks for finding this, approved the PR!
Sorry, something went wrong.
No branches or pull requests
While getting familiar with the library codebase I realized a message regarding a Circular Dependency when running
npm run dist
:This is caused by the ChatBubbleAvatar importing Avatar from src/index.ts instead of src/Avatar.
The current import looks like this:
When they should be:
I am making a PR to fix it right now.
The text was updated successfully, but these errors were encountered: