We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c90c2b commit 7dffe17Copy full SHA for 7dffe17
packages/app/scripts/deploy.js
@@ -1,4 +1,4 @@
1
-const fetch = require('whatwg-fetch');
+const { fetch } = require('whatwg-fetch');
2
3
fetch('https://deployment-api.lbogdan.ro/image', {
4
method: 'POST',
packages/app/scripts/sentry-create-release.js
@@ -12,7 +12,7 @@ try {
12
`yarn sentry-cli releases --org=codesandbox -p frontend new "${VERSION}"`
13
);
14
childProcess.execSync(
15
- `yarn sentry-cli releases --org=codesandbox set-commits "${VERSION}" --commit "CompuIves/codesandbox-client@${COMMIT_HASH}"`
+ `yarn sentry-cli releases --org=codesandbox set-commits "${VERSION}" --commit "codesandbox/codesandbox-client@${COMMIT_HASH}"`
16
17
console.log('Marked release');
18
} catch (e) {
0 commit comments