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
PR for reference: cozy/cozy-notes#201
Before:
import { useFlag } from 'cozy-flags' import flag, { FlagSwitcher } from 'cozy-flags'
After updating cozy-flags: useFlag and FlagSwitcher are undefined.
useFlag
FlagSwitcher
undefined
Temporary fix:
import useFlag from 'cozy-flags/dist/useFlag' import FlagSwitcher from 'cozy-flags/dist/FlagSwitcher' import flag from 'cozy-flags'
Here everything is defined, but the import paths are non-idiomatic.
The text was updated successfully, but these errors were encountered:
I think this is related to #1273
Sorry, something went wrong.
Seems likely yes, I can't check on it right now but will do later if nobody is available in the meantime
No branches or pull requests
PR for reference: cozy/cozy-notes#201
Before:
After updating cozy-flags:
useFlag
andFlagSwitcher
areundefined
.Temporary fix:
Here everything is defined, but the import paths are non-idiomatic.
The text was updated successfully, but these errors were encountered: