Skip to content

Commit

Permalink
[FE] fix: 옵저버 div에 높이 설정 (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
xodms0309 authored Sep 18, 2023
1 parent d547a3d commit 6a2d81f
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 6a2d81f

Please sign in to comment.