Skip to content

Commit

Permalink
fixed render panel overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
evanping committed Jul 22, 2024
1 parent 6c40920 commit 7e7ad97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/editor/components/RenderPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function RenderPanel() {
//console.log('Current stage', localStorage.getItem('currentStageIndex'))

return (
<div className="flex h-full w-full" data-cy="render-panel">
<div className="flex" data-cy="render-panel">
{currentStageIndex === 'default' && (
<h1>
Click on a stage card to preview the stage from a participant view.
Expand Down Expand Up @@ -72,7 +72,7 @@ export function RenderPanel() {
)}
</div> */}

<div className="page-display-container max-w-full overflow-auto">
<div className="w-full">
{currentStageIndex !== 'default' && <Stage />}
</div>
</div>
Expand Down

0 comments on commit 7e7ad97

Please sign in to comment.