We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb5005 commit 3475181Copy full SHA for 3475181
packages/app/src/app/store/modules/deployment/actions.js
@@ -81,7 +81,7 @@ export function postToZeit({ http, path, props, state }) {
81
headers: { Authorization: `bearer ${token}` },
82
})
83
.then(response => {
84
- const url = `https://${response.url}`;
+ const url = `https://${response.result.url}`;
85
return path.success({ url });
86
87
.catch(error => path.error({ error }));
0 commit comments