-
Notifications
You must be signed in to change notification settings - Fork 8
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
템플릿 CRUD 카테고리, 태그 추가 #275
템플릿 CRUD 카테고리, 태그 추가 #275
Conversation
…eEditQuery 테스트 수정
…de-zap into refactor/template_CRUD
.env | ||
.env.development | ||
.env.production | ||
.env* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요거는 바뀌면 안될거 같아요@!
frontend/src/api/customFetch.ts
Outdated
} catch (error) { | ||
console.error(error); | ||
throw new Error(errorMessage); | ||
} | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
customFetch는 에러 핸들링 관련 PR에서 바뀔거 같긴 해요!
border-radius: 7px; | ||
&:hover { | ||
color: ${({ theme }) => theme.color.light.white}; | ||
background-color: ${({ theme }) => theme.color.light.primary_500}; | ||
} | ||
`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(농담) 7px 말고 8px은 별로였나요 ㅋㅋㅋ
여기 color가 white라면 위에 background-color도 같은 theme 변수를 써도 좋았을거 같아요!
{options?.map((option, idx) => ( | ||
<S.Option key={idx} onClick={() => handleCurrentValue(option)}> | ||
{getOptionLabel(option)} | ||
</S.Option> | ||
))} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기서 options가 옵셔널이 아닌거 같아요!
⚡️ 관련 이슈
close #181 #241
📍주요 변경 사항
1. 카테고리, 태그 기능 추가
2. 템플릿 수정, 생성 페이지 컴포넌트 통일 (TemplateEdit)
3. 커스텀 훅 분리
🎸기타
- 아직 리펙토링이 상당히 많이 필요하지만 1차 공유를 위해 먼저 PR 올립니다. 코드리뷰 많이 달아주세요.