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
In both these places you're manually constructing the cookie string:
pulp-faction/src/controllers/login.js
Line 25 in 7a8d71c
pulp-faction/src/controllers/signUp.js
Line 33 in 7a8d71c
But you've already included the cookie package in your project which handles serialization for you. You're already using it to parse cookies:
cookie
pulp-faction/src/controllers/library.js
Line 10 in 7a8d71c
You should also use it to serialize to reduce the possibility of manual error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In both these places you're manually constructing the cookie string:
pulp-faction/src/controllers/login.js
Line 25 in 7a8d71c
pulp-faction/src/controllers/signUp.js
Line 33 in 7a8d71c
But you've already included the
cookie
package in your project which handles serialization for you. You're already using it to parse cookies:pulp-faction/src/controllers/library.js
Line 10 in 7a8d71c
You should also use it to serialize to reduce the possibility of manual error.
The text was updated successfully, but these errors were encountered: