InertiaJS Set-Cookie header ignored #4717
-
I am writing an article with Quill text editor in adonis and inertia(vue3). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @atakansn! 👋🏻 The issue lies elsewhere — when the validation rules are triggered, it stores the error and old value in the session, which then gets written to a cookie. However, your text is too large to fit into the cookie. To fix this, you'll need to change your session driver. That should do the trick! 👍🏻 |
Beta Was this translation helpful? Give feedback.
Hey @atakansn! 👋🏻
The issue lies elsewhere — when the validation rules are triggered, it stores the error and old value in the session, which then gets written to a cookie. However, your text is too large to fit into the cookie.
To fix this, you'll need to change your session driver. That should do the trick! 👍🏻