Skip to content

Commit

Permalink
fixed viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
18bharathkumar committed Feb 9, 2025
1 parent c65e939 commit 1f58bd7
Showing 1 changed file with 10 additions and 8 deletions.
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-w-full rf-h-full">
<RunFrameWithApi
debug={props.debug}
leftHeaderContent={
<div>
<SaveToSnippetsButton />
</div>
}
/>
</div>
)
}

0 comments on commit 1f58bd7

Please sign in to comment.