Skip to content

Commit d9988dd

Browse files
committed
Fix other sandboxes in explore page
1 parent 642ebea commit d9988dd

File tree

1 file changed

+1
-1
lines changed
  • packages/common/src/components/FeaturedSandbox

1 file changed

+1
-1
lines changed

packages/common/src/components/FeaturedSandbox/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default class FeaturedSandbox extends React.PureComponent<
8989
return fetch(`${protocolAndHost()}/api/v1/sandboxes/${id}`)
9090
.then(x => x.json())
9191
.then(x => {
92-
this.fetchedSandboxes[x.data.id] = x.data;
92+
this.fetchedSandboxes[x.data.id] = camelizeKeys(x.data);
9393

9494
return x.data;
9595
});

0 commit comments

Comments
 (0)