Fix typo in message (#168)
This commit is contained in:
parent
a80139913a
commit
69a9b03fd9
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ export const upload = async (
|
||||||
const json = await resp.json();
|
const json = await resp.json();
|
||||||
if (resp.status !== 201) {
|
if (resp.status !== 201) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Failed to upload release asset ${name}. recieved status code ${
|
`Failed to upload release asset ${name}. received status code ${
|
||||||
resp.status
|
resp.status
|
||||||
}\n${json.message}\n${JSON.stringify(json.errors)}`
|
}\n${json.message}\n${JSON.stringify(json.errors)}`
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue