Skip to content

Commit

Permalink
fix CenteredLayout's sticky task area
Browse files Browse the repository at this point in the history
  • Loading branch information
goplayoutside3 committed May 23, 2024
1 parent 10de0a3 commit 69f6916
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,13 @@ export default function CenteredLayout({ separateFramesView = false }) {
</Box>
)}
</Box>
<Box
<StickyTaskArea
width={size === 'small' ? '100%' : '25rem'}
fill={size === 'small' ? 'horizontal' : 'vertical'}
>
<StickyTaskArea>
<TaskArea />
{separateFramesView && <FieldGuide />}
</StickyTaskArea>
</Box>
<TaskArea />
{separateFramesView && <FieldGuide />}
</StickyTaskArea>
</Box>
<FeedbackModal />
<QuickTalk />
Expand Down

0 comments on commit 69f6916

Please sign in to comment.