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 642ebea commit d9988ddCopy full SHA for d9988dd
packages/common/src/components/FeaturedSandbox/index.tsx
@@ -89,7 +89,7 @@ export default class FeaturedSandbox extends React.PureComponent<
89
return fetch(`${protocolAndHost()}/api/v1/sandboxes/${id}`)
90
.then(x => x.json())
91
.then(x => {
92
- this.fetchedSandboxes[x.data.id] = x.data;
+ this.fetchedSandboxes[x.data.id] = camelizeKeys(x.data);
93
94
return x.data;
95
});
0 commit comments