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
This issue is the same one that was described here: #53 (comment)
Expected behavior: Symbols that have been updated, but their name has not changed should not break references to existing instances of that symbol.
Observed behavior: Making changes to a symbol will cause instantiations of that symbol to go missing.
How to reproduce:
Sketch version: 43
Please attach screenshots, a zip file of your project, and/or a link to your github project Example Code:
import { View, Text, makeSymbol, injectSymbols } from 'react-sketchapp' import React from 'react' const H1Container = () => <View><Text>Some other Text</Text></View> H1Container.displayName = 'H1' makeSymbol(H1Container) export default context => { injectSymbols(context) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue is the same one that was described here: #53 (comment)
Expected behavior:
Symbols that have been updated, but their name has not changed should not break references to existing instances of that symbol.
Observed behavior:
Making changes to a symbol will cause instantiations of that symbol to go missing.
How to reproduce:
Sketch version:
43
Please attach screenshots, a zip file of your project, and/or a link to your github project
Example Code:
The text was updated successfully, but these errors were encountered: