-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix: storybook build error #8041
New issue
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
Conversation
WalkthroughImport paths for icon components are updated from external package reference Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Poem
Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (1 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (7)
🧰 Additional context used🧠 Learnings (4)📓 Common learnings📚 Learning: 2025-10-06T01:44:38.472ZApplied to files:
📚 Learning: 2025-10-06T01:45:11.248ZApplied to files:
📚 Learning: 2025-10-09T20:42:31.843ZApplied to files:
🔇 Additional comments (7)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR refactors icon imports within the @plane/propel package to use relative imports instead of the package's public export path. This change improves internal module resolution by treating icons as internal dependencies rather than importing from the package's public API.
- Changed icon imports from
@plane/propel/iconsto relative../iconspaths - Applied consistently across story files and component files
- Affects 7 files across different component directories
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/propel/src/popover/popover.stories.tsx | Updated CloseIcon import to use relative path |
| packages/propel/src/menu/menu.tsx | Updated ChevronDownIcon and ChevronRightIcon imports to use relative path |
| packages/propel/src/emoji-icon-picker/lucide-icons.tsx | Updated chevron icon imports to use relative path |
| packages/propel/src/dialog/dialog.stories.tsx | Updated CloseIcon import to use relative path |
| packages/propel/src/context-menu/context-menu.stories.tsx | Updated ChevronRightIcon import to use relative path |
| packages/propel/src/collapsible/collapsible.stories.tsx | Updated ChevronDownIcon import to use relative path |
| packages/propel/src/calendar/root.tsx | Updated ChevronLeftIcon import to use relative path |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Type of Change
Summary by CodeRabbit
Refactor