Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

/fix/RunFrameForCli-full-viewport #194

18 changes: 10 additions & 8 deletions lib/components/RunFrameForCli/RunFrameForCli.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { SaveToSnippetsButton } from "./SaveToSnippetsButton"

export const RunFrameForCli = (props: { debug?: boolean }) => {
return (
<RunFrameWithApi
debug={props.debug}
leftHeaderContent={
<div>
<SaveToSnippetsButton />
</div>
}
/>
<div className="rf-h-screen rf-w-screen rf-flex rf-flex-col">
<RunFrameWithApi
debug={props.debug}
leftHeaderContent={
<div>
<SaveToSnippetsButton />
</div>
}
/>
</div>
)
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@tscircuit/3d-viewer": "^0.0.111",
"@tscircuit/assembly-viewer": "^0.0.1",
"@tscircuit/eval-webworker": "^0.0.83",
Anshgrover23 marked this conversation as resolved.
Show resolved Hide resolved
"@tscircuit/core": "^0.0.292",
"@tscircuit/core": "^0.0.293",
"@tscircuit/file-server": "^0.0.13",
"@tscircuit/pcb-viewer": "^1.11.29",
"@tscircuit/props": "^0.0.138",
Expand Down
Loading