Skip to content

Commit

Permalink
[Chore] 기수 수정 (#427)
Browse files Browse the repository at this point in the history
* chore: 이메일 신청 36기로 변경

* chore: 활동 레코드 전 기수로 변경
  • Loading branch information
eonseok-jeon authored Sep 9, 2024
1 parent fb61a55 commit 21743f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/AboutPage/components/Record/Section/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type RecordSectionProps = Pick<AboutInfoType, 'generation' | 'records'>;
const RecordSection = (props: RecordSectionProps) => {
return (
<St.Wrapper>
<SectionTop engTitle="Activity Records" korTitle={`${props.generation}기 활동 레코드`} />
<SectionTop engTitle="Activity Records" korTitle={`${props.generation - 1}기 활동 레코드`} />
<RecordList records={props.records} />
</St.Wrapper>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NotificationSection = () => {
if (!email) return;
setIsLoading(true);
const result = await client.post('/notification/register', {
generation: 35, // 리크루팅 시기 이후 변경되어야 함.
generation: 36, // 리크루팅 시기 이후 변경되어야 함.
email,
});
if (result.status === 201) {
Expand Down

0 comments on commit 21743f1

Please sign in to comment.