Skip to content

Commit

Permalink
fix: 나눔 SHARE_END => SHARE_COMPLETE 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
a-honey committed Mar 1, 2024
1 parent eaa6692 commit 35f154e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/mypage/share/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type { MySharesSortType } from '@/types/mypage';

const TABS: TabLabel[] = [
{ label: '나눔 중', value: 'SHARE_IN_PROGRESS' },
{ label: '나눔 완료', value: 'SHARE_END' },
{ label: '나눔 완료', value: 'SHARE_COMPLETE' },
];

const SORT_TYPES: SortLabel[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/pages/share/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { useObserver } from '@/hooks/useObserver';
const TABS: TabLabel[] = [
{ label: '나눔 신청', value: 'SHARE_START' },
{ label: '나눔 중', value: 'SHARE_IN_PROGRESS' },
{ label: '나눔 완료', value: 'SHARE_END' },
{ label: '나눔 완료', value: 'SHARE_COMPLETE' },
];

const SORT_TYPES: SortLabel[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/types/friendship/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export type FriendshipSortType = 'nickname' | 'createdAt';

export type ShareSortType = 'dueDate' | 'registeredDate';

export type ShareStatusType = 'SHARE_START' | 'SHARE_IN_PROGRESS' | 'SHARE_END';
export type ShareStatusType = 'SHARE_START' | 'SHARE_IN_PROGRESS' | 'SHARE_COMPLETE';

0 comments on commit 35f154e

Please sign in to comment.