Skip to content

Commit

Permalink
Merge pull request #1087 from samchon/feat/editor
Browse files Browse the repository at this point in the history
Turn off miss-used cross domain flag of StackBlitz
  • Loading branch information
samchon authored Oct 28, 2024
2 parents dfc28c2 + 788e082 commit b727ce0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/editor",
"version": "0.3.1",
"version": "0.3.2",
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down
1 change: 0 additions & 1 deletion packages/editor/src/NestiaEditorApplication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ async function getAsset(): Promise<IAsset | null> {

async function findSwagger(): Promise<string | null> {
const response: Response = await fetch("./swagger.json");
console.log("swagger", response.status);
return response.status === 200 ? "./swagger.json" : null;
}

Expand Down
1 change: 0 additions & 1 deletion packages/editor/src/NestiaEditorIframe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export function NestiaEditorIframe(props: NestiaEditorIframe.IProps) {
height: "100%",
openFile: result.data.openFile,
startScript: result.data.startScript as any, // no problem
crossOriginIsolated: true,
},
);
})().catch((exp) => {
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@mui/icons-material": "5.15.6",
"@mui/material": "5.15.6",
"@mui/system": "5.15.6",
"@nestia/editor": "0.3.1",
"@nestia/editor": "0.3.2",
"jszip": "^3.10.1",
"next": "14.2.13",
"nextra": "^2.13.4",
Expand Down

0 comments on commit b727ce0

Please sign in to comment.