Skip to content

Commit 7dffe17

Browse files
committed
Fix builds
1 parent 9c90c2b commit 7dffe17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/app/scripts/deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const fetch = require('whatwg-fetch');
1+
const { fetch } = require('whatwg-fetch');
22

33
fetch('https://deployment-api.lbogdan.ro/image', {
44
method: 'POST',

packages/app/scripts/sentry-create-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ try {
1212
`yarn sentry-cli releases --org=codesandbox -p frontend new "${VERSION}"`
1313
);
1414
childProcess.execSync(
15-
`yarn sentry-cli releases --org=codesandbox set-commits "${VERSION}" --commit "CompuIves/codesandbox-client@${COMMIT_HASH}"`
15+
`yarn sentry-cli releases --org=codesandbox set-commits "${VERSION}" --commit "codesandbox/codesandbox-client@${COMMIT_HASH}"`
1616
);
1717
console.log('Marked release');
1818
} catch (e) {

0 commit comments

Comments
 (0)