Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
};

module.exports = nextConfig;
2 changes: 2 additions & 0 deletions src/commons/kakao/keyword/kakaomap.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,3 +214,5 @@ export const HiddenBox = styled.div`
`;

export const WeatherBox = styled.div``;
export const Warrap = styled.div``;
export const WarrapIn = styled.span``;
8 changes: 4 additions & 4 deletions src/commons/kakao/keyword/kakaomapmarkers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { v4 as uuidv4 } from "uuid";

export default function KakaomapMarks(props: MarkerProps) {
return (
<>
<S.Warrap>
{props.data?.fetchBoardsPage &&
!props.isActive1 &&
props.data?.fetchBoardsPage.map((el, index: number) => (
Expand All @@ -30,7 +30,7 @@ export default function KakaomapMarks(props: MarkerProps) {
))}

{props.markers.map((marker: any, index: number) => (
<>
<S.WarrapIn key={index}>
{marker.group_code === "FD6" && (
<S.KakaoMapMarker
// key={`marker-${marker.content}-${marker.position.lng},${marker.position.lng}`}
Expand Down Expand Up @@ -336,8 +336,8 @@ export default function KakaomapMarks(props: MarkerProps) {
props.contentFlag && <Contents marker={marker} />}
</S.KakaoMapMarker>
)}
</>
</S.WarrapIn>
))}
</>
</S.Warrap>
);
}
16 changes: 16 additions & 0 deletions src/component/unit/boards/detail/detail.query.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,19 @@ export const FETCH_USER_LIKE = gql`
}
}
`;

export const FETCH_BOARDS_PAGE = gql`
query fetchBoardsPage(
$page: Int
$category: String
$search: String
$sortType: String
) {
fetchBoardsPage(
page: $page
category: $category
search: $search
sortType: $sortType
)
}
`;
3 changes: 0 additions & 3 deletions src/component/unit/mypaids/mypaids.presenter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,3 @@ export default function MypaidsPresenter(props: IMypaidsPresenter) {
</S.WrapperOut>
);
}

{
}