fix(expo-ui-swift-ui): correct import path from @expo-ui/swift-ui to @expo/ui/swift-ui#50
Open
xiaolai wants to merge 1 commit into
Open
fix(expo-ui-swift-ui): correct import path from @expo-ui/swift-ui to @expo/ui/swift-ui#50xiaolai wants to merge 1 commit into
xiaolai wants to merge 1 commit into
Conversation
This was referenced Apr 27, 2026
The import statement used '@expo-ui/swift-ui' which is a non-existent package. The correct path is '@expo/ui/swift-ui', matching the install command and frontmatter description. Co-Authored-By: Claude Code <noreply@anthropic.com>
6c3cbf3 to
ed3fb41
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
The code example in
plugins/expo/skills/expo-ui-swift-ui/SKILL.md(line 27) imports from@expo-ui/swift-ui, but the frontmatter description and install instructions consistently reference@expo/ui/swift-ui. These are different package paths —@expo-ui/swift-uidoes not exist as a published package, so any developer copying the example import verbatim will get aCannot find moduleerror at runtime.Fix: Change the import path in the code example to match the correct package path used everywhere else in the file.