Skip to content

Commit

Permalink
refactor: 메인페이지 하트, 이름 높낮이 문제 수정 + queryClient 캐시 수정 (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
dladncks1217 authored Oct 6, 2023
1 parent 4a75845 commit 65e7226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const CommunityTripsItem = ({ index, trip }: CommunityTripsItemProps) => {
{description}
</Text>
</Box>
<Flex css={communityItemInfoStyling} styles={{ justify: 'space-between' }}>
<Flex css={communityItemInfoStyling} styles={{ justify: 'space-between', align: 'center' }}>
<Flex styles={{ align: 'center', gap: Theme.spacer.spacing2 }}>
<img alt="작성자 이미지" src={writer.imageUrl} css={writerImageStyling} />
<Text size="small">{writer.nickname}</Text>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/hooks/api/queryClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const queryClient = new QueryClient({
retry: NETWORK.RETRY_COUNT,
suspense: true,
useErrorBoundary: true,
cacheTime: 0,
},
},
});

0 comments on commit 65e7226

Please sign in to comment.