Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Mar 10, 2024
2 parents 584c826 + 4ae6504 commit b3b42ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/favorite/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ function FavoritePage() {
hasMore={hasNextPage}
loader={<div className="loader" key={0}>Loading ...</div>}
inverse={false}
style={{ overflow: 'visible' }}
>
<div className={cx('productArticleWrapper')}>
{favoriteList.map((item) => {
Expand Down
1 change: 1 addition & 0 deletions src/app/search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function SearchPage() {
hasMore={hasNextPage}
loader={<div className="loader" key={0}>Loading ...</div>}
inverse={false}
style={{ overflow: 'visible' }}
>
<div className={cx('productArticleContainer')}>
{productList?.map((item) => {
Expand Down
1 change: 1 addition & 0 deletions src/components/home/product-list/ProductList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function ProductList() {
hasMore={hasNextPage}
loader={<div className="loader" key={0}>Loading ...</div>}
inverse={false}
style={{ overflow: 'visible' }}
>
<div className={cx('productArticleContainer')}>
{productList?.map((item, index) => {
Expand Down

0 comments on commit b3b42ec

Please sign in to comment.