Skip to content

Commit

Permalink
fix: 기디 통합
Browse files Browse the repository at this point in the history
  • Loading branch information
cjy3458 committed Mar 7, 2025
1 parent 96e3cef commit 4c4854d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,23 @@ import { token } from '@utils/state';
import { useRecoilValue } from 'recoil';

const trackController: Record<MemberStack, ITrackController> = {
pm: {
title: '기획',
arrayLength: 4,
pm_design: {
title: '기획&디자인',
arrayLength: 10,
color: Primary.light,
titleColor: Primary.default,
},
design: {
title: '디자인',
arrayLength: 5,
color: '#FFF2EB',
titleColor: Secondary.default,
},
frontend: {
title: '프론트엔드',
arrayLength: 9,
arrayLength: 10,
color: '#ECFDE8',
titleColor: '#36CA60',
titleColor: '#5a36ad',
},
backend: {
title: '백엔드',
arrayLength: 10,
color: '#FDF3FF',
titleColor: '#F33EA0',
titleColor: '#edda60',
},
};

Expand Down
4 changes: 2 additions & 2 deletions src/types/request.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useQueries } from 'react-query';

export type MemberStack = 'pm' | 'frontend' | 'backend' | 'design';
export type MemberStackKor = '기획' | '프론트엔드' | '백엔드' | '디자인';
export type MemberStack = 'pm_design' | 'frontend' | 'backend';
export type MemberStackKor = '기획&디자인' | '프론트엔드' | '백엔드';
export type ShareURL = 'github' | 'youtube' | 'web';
export type ArchivingType = 'gallery' | 'session' | 'project';

Expand Down

0 comments on commit 4c4854d

Please sign in to comment.