-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Removed development console.log lines #2844
Conversation
Thanks @cjreimer! I noticed these as well, no impact on functionality but thought I should let you know:
|
Looks good but worth addressing the comments above @cjreimer - thanks for this! |
Just pushed changes to address the comments. Thanks so much, @callingmedic911 for the QC! Not that's it's a good excuse, but I was obviously a bit busy and rushed when I was trying to close out this PR. |
🚀 Thank you all! I'll take it from here and get this merged. |
@cjreimer No worries! Gentle reminder about the second point:
I haven't had the chance to look at the code but it could be due to some empty/null variable. For example |
@callingmedic911 ah, very interesting. I wonder if it's from |
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.
@cjreimer Current changes are ok to go in as is, but if you are available it would be great to fix the //
in this PR as well.
Just let me know if you'd prefer to merge this as is and then open an Issue or PR for next steps.
Thanks!
Components with the import //
I'm seeing this in the E2E project in the following places:
web/src/components/Post/PostCell/PostCell.js
import Post from 'src/components//Post/Post'
web/src/components/Post/Posts/Posts.js
import { QUERY } from 'src/components//Post/PostsCell'
web/src/components/Post/PostsCell/PostsCell.js
import Posts from 'src/components//Post/Posts'
- For all pages, e.g.
web/src/pages/Post/EditPostPage/EditPostPage.js
import EditPostCell from 'src/components//Post/EditPostCell'
others:
import NewPost from 'src/components//Post/NewPost'
...
import PostCell from 'src/components//Post/PostCell'
...
import PostsCell from 'src/components//Post/PostsCell'
Thanks for all the catches! I'm sorry I missed these things! I'll get on it now this evening! |
OK, I addressed the Thanks for the catches, and please let me know if there's anything else needed! |
Looks great @cjreimer Merging now 🚀 |
This PR removes the development console.log lines I left in by accident in PR #2613.
Thanks to @callingmedic911 for catching!!