Skip to content

Commit

Permalink
feat(shelter, volunteer): 마이 페이지, 봉사 모집글 리스트 페이지에 padding-bottom 50px…
Browse files Browse the repository at this point in the history
… 추가 (#287)
  • Loading branch information
sukvvon authored Dec 2, 2023
1 parent 4f21649 commit d803bf0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/shelter/src/pages/my/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function MyPage() {
};

return (
<Box>
<Box pb="50px">
<ProfileInfo infoTitle={shelterName} infoTexts={[email]} />
<Divider />
<InfoList py={4}>
Expand Down
6 changes: 3 additions & 3 deletions apps/shelter/src/pages/volunteers/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconButton } from '@chakra-ui/react';
import { Box, IconButton } from '@chakra-ui/react';
import { useSuspenseInfiniteQuery } from '@tanstack/react-query';
import { Suspense } from 'react';
import { useNavigate } from 'react-router-dom';
Expand Down Expand Up @@ -50,7 +50,7 @@ function Recruitments() {
});

return (
<>
<Box pb="50px">
{recruitments.map((recruitment) => (
<VolunteerRecruitItem
key={recruitment.id}
Expand Down Expand Up @@ -82,7 +82,7 @@ function Recruitments() {
onClose={onCloseModal}
{...alertModalState}
/>
</>
</Box>
);
}

Expand Down
2 changes: 1 addition & 1 deletion apps/volunteer/src/pages/my/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function My() {
const { data } = useFetchMyVolunteer();

return (
<Box>
<Box pb="50px">
<ProfileInfo
infoImage={data.volunteerImageUrl}
infoTitle={data.volunteerName}
Expand Down
2 changes: 1 addition & 1 deletion apps/volunteer/src/pages/volunteers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function Recruitments() {
});

return (
<Box>
<Box pb="50px">
{recruitments.map((recruitment) => (
<VolunteerRecruitItem
key={recruitment.id}
Expand Down

0 comments on commit d803bf0

Please sign in to comment.