Skip to content

Commit 085ee96

Browse files
icyJosephleerobijjk
authored
Fix with mux video example (#37434)
* fix: On error upchunk dispatches an object * chore: Typo on contribution guide, `unverfied` * Update contributing.md Co-authored-by: Lee Robinson <me@leerob.io> Co-authored-by: JJ Kasper <jj@jjsweb.site>
1 parent 1463f0d commit 085ee96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Issues are opened with one of these labels:
323323

324324
- `template: story` - a feature request, converted to an [💡 Ideas discussion](https://github.com/vercel/next.js/discussions/categories/ideas)
325325
- `template: bug` - unverified issue with Next.js itself, or one of the examples in the [`examples`](https://github.com/vercel/next.js/tree/canary/examples) folder
326-
- `template: documentation` - feedback for improvement or unverfied issue with the Next.js documentation
326+
- `template: documentation` - feedback for improvement or an unverified issue with the Next.js documentation
327327

328328
In case of a bug report, a maintainer looks at the provided reproduction. If the reproduction is missing or insufficient, a `please add a complete reproduction` label is added. If a reproduction is not provided for more than 30 days, the issue becomes stale and will be automatically closed. If a reproduction is provided within 30 days, the `please add a complete reproduction` label is removed and the issue will not become stale anymore.
329329

examples/with-mux-video/components/upload-form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const UploadForm = () => {
6262
})
6363

6464
upload.on('error', (err) => {
65-
setErrorMessage(err.detail)
65+
setErrorMessage(err.detail.message)
6666
})
6767

6868
upload.on('progress', (progress) => {

0 commit comments

Comments
 (0)