Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Chore] 기수 수정 #427

Merged
merged 2 commits into from
Sep 9, 2024
Merged
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
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
Loading