Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Oct 24, 2024
1 parent 08746fd commit ed95ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pageTemplates/studyPage/StudyPageDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function StudyPageDrawer({

const screenHeight = window.innerHeight;
const adjustedHeight = (screenHeight - 52 - iPhoneNotchSize()) * 0.9;

return (
<BottomFlexDrawer
isOverlay={false}
Expand All @@ -102,7 +102,7 @@ function StudyPageDrawer({
setSelectOption={setSelectOption}
placeCnt={thumbnailCardInfoArr?.length}
/>
<Box overflowY="scroll" overscrollBehaviorY="contain" flex={1}>
<Box overflowY="scroll" overscrollBehaviorY="contain" h="66.5%">
{thumbnailCardInfoArr
? thumbnailCardInfoArr.map(({ participants, ...thumbnailCardInfo }, idx) => (
<Box key={idx} mb={3}>
Expand Down

0 comments on commit ed95ff7

Please sign in to comment.