Skip to content

Commit

Permalink
fix:지역이미지 사진 크기 줄이기
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeminseok committed Jan 24, 2024
1 parent 4bba7d4 commit c3b7a98
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 6 deletions.
Binary file modified src/assets/regionImages/busan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/chungcheong.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/gangwon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/gyeonggi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/gyeongsang.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/jeju.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/jeolla.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/regionImages/seoul.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions src/pages/searchPage/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Search = () => {
: undefined;
},
});

console.log("searchInfo", searchInfo);
const handleIntersect: IntersectionObserverCallback = (entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting && hasNextPage) {
Expand Down Expand Up @@ -110,11 +110,10 @@ const Search = () => {
<S.SearchItemFlex>
{data &&
data.pages?.length > 0 &&
data.pages.map(
(page) =>
page?.content.map((item: ISearchList) => (
<SearchItem key={item.id} item={item} />
)),
data.pages.map((page) =>
page?.content.map((item: ISearchList) => (
<SearchItem key={item.id} item={item} />
)),
)}
</S.SearchItemFlex>
<div ref={(node) => setTarget(node)} />
Expand Down

0 comments on commit c3b7a98

Please sign in to comment.