Skip to content

Commit

Permalink
feat: 옵저버 div에 높이 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
xodms0309 committed Sep 18, 2023
1 parent 2cce208 commit 6177654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ProductList = ({ category, selectedOption }: ProductListProps) => {
</li>
))}
</ProductListContainer>
<div ref={scrollRef} aria-hidden />
<div ref={scrollRef} aria-hidden style={{ height: '1px' }} />
</>
);
};
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Recipe/RecipeList/RecipeList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const RecipeList = ({ selectedOption }: RecipeListProps) => {
</li>
))}
</RecipeListContainer>
<div ref={scrollRef} aria-hidden />
<div ref={scrollRef} aria-hidden style={{ height: '1px' }} />
</>
);
};
Expand Down

0 comments on commit 6177654

Please sign in to comment.