We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3df14a7 commit 54b97d9Copy full SHA for 54b97d9
packages/app/src/sandbox/index.js
@@ -98,7 +98,9 @@ requirePolyfills().then(() => {
98
// We need to fetch the sandbox ourselves...
99
const id = getId();
100
window
101
- .fetch(host + `/api/v1/sandboxes/${id}`)
+ .fetch(host + `/api/v1/sandboxes/${id}`, {
102
+ credentials: 'include',
103
+ })
104
.then(res => res.json())
105
.then(res => {
106
const camelized = camelizeKeys(res);
0 commit comments