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
I am trying to read the error response from turbo:submit-end, but it is failing with:
turbo:submit-end
base.js:96 Uncaught (in promise) TypeError: Failed to execute 'text' on 'Response': body stream already read
The test code I have is as follows:
async turboSubmit(event) { const { success, fetchResponse: { response }, } = event.detail if (success) { return } console.log(await response.text()) }
The text was updated successfully, but these errors were encountered:
Fixed by #364
Sorry, something went wrong.
Merge pull request hotwired#19 from manuelpuyol/hash-redirect-2
6272c36
Hash redirect 2
No branches or pull requests
I am trying to read the error response from
turbo:submit-end
, but it is failing with:The test code I have is as follows:
The text was updated successfully, but these errors were encountered: