review - 소프트 스킬 스탭 토스트 적용, Toast.Text
children 타입 변경
#188
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🤔 해결하려는 문제가 무엇인가요?
🎉 변경 사항
소프트 스킬 스탭에서 max개 이상으로 누를 시 토스트를 띄웠어요
Toast.Text
의 children 타입을string
에서ReactNode
로 바꿨어요const MAX_LENGTH = 5; ... fireToast({ content: ( <> <WarningIcon /> - <Toast.Text>키워드는 {MAX_LENGTH}개까지 선택할 수 있어요</Toast.Text> </> ), });
위 코드에서 MAX_LENGTH의 타입이 number라 에러가 발생하더라구요. JSX를 그리는데 더 적절한 타입인 것 같아
ReactNode
타입으로 바꾸었어용🌄 스크린샷
2023-05-31.1.28.49.mov