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
canUseDom is a function defined here https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L4
However, you are using it as a boolean in if statements here: https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L47 and here https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L55
This has the effect of always being truthy. If the function is necessary, then call it. If it's not necessary, it should be removed.
The text was updated successfully, but these errors were encountered:
#43
Sorry, something went wrong.
No branches or pull requests
canUseDom is a function defined here https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L4
However, you are using it as a boolean in if statements here: https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L47
and here https://github.com/B3nnyL/react-zendesk/blob/master/src/index.js#L55
This has the effect of always being truthy. If the function is necessary, then call it. If it's not necessary, it should be removed.
The text was updated successfully, but these errors were encountered: