Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 에코노베이션 31기 신입회원 모집을 위한 QA 텍스트를 수정하고 애플리케이션 관련 날짜 및 상수를 업데이트합니다. 지원서 양식의 여러 문구와 안내사항을 명확히 하고, 텍스트 입력 필드의 최대 길이를 조정하여 사용자 경험을 개선하는 데 중점을 두었습니다. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
| time: [ | ||
| { | ||
| startTime: new Date(2025, 8, 15, 10, 0, 0), | ||
| endTime: new Date(2025, 8, 15, 20, 30, 0), | ||
| startTime: new Date(2026, 2, 17, 10, 0, 0), | ||
| endTime: new Date(2026, 2, 17, 20, 30, 0), | ||
| }, | ||
| { | ||
| startTime: new Date(2025, 8, 16, 10, 0, 0), | ||
| endTime: new Date(2025, 8, 16, 20, 30, 0), | ||
| startTime: new Date(2026, 2, 18, 10, 0, 0), | ||
| endTime: new Date(2026, 2, 18, 20, 30, 0), | ||
| }, | ||
| { | ||
| startTime: new Date(2025, 8, 17, 10, 0, 0), | ||
| endTime: new Date(2025, 8, 17, 20, 30, 0), | ||
| startTime: new Date(2026, 2, 19, 10, 0, 0), | ||
| endTime: new Date(2026, 2, 19, 20, 30, 0), | ||
| }, |
There was a problem hiding this comment.
| "안녕하세요," + | ||
| name + | ||
| "님\n" + | ||
| '2025년 2학기 에코노베이션 30기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 9월 12일 금요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.', | ||
| '2026년 1학기 에코노베이션 31기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 3월 14일 금요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.', |
There was a problem hiding this comment.
| const ApplicationTexarea = ({ data }: ApplicationTextareaProps) => { | ||
| const textData = data as ApplicationTextarea; | ||
| const maxLength = ['deep', 'restoration', 'studyPlan'].includes(textData.name) ? 500 : 800; | ||
| const maxLength = ['deep', 'failure', 'studyPlan'].includes(textData.name) ? 500 : 800; |
| ]; | ||
|
|
||
| export const MAX_TEXT_LENGTH = 1000; | ||
| export const MAX_BOOLEAN_TEXT_LENGTH = 800; |
There was a problem hiding this comment.
MAX_BOOLEAN_TEXT_LENGTH라는 이름은 BooleanTextarea 컴포넌트에만 국한되는 것처럼 보입니다. 하지만 Textarea.component.tsx에서도 동일한 값(800)을 하드코딩하여 사용하고 있습니다. 여러 곳에서 사용될 수 있는 값이라면 TEXT_LENGTH_LONG과 같이 좀 더 일반적인 이름으로 상수를 정의하는 것이 좋습니다. 또한, 500과 같은 다른 글자 수 제한도 TEXT_LENGTH_SHORT 등으로 함께 상수로 관리하면 코드의 일관성과 재사용성이 향상될 것입니다.
| export const MAX_BOOLEAN_TEXT_LENGTH = 800; | |
| export const TEXT_LENGTH_LONG = 800; |
cho-in-sik
left a comment
There was a problem hiding this comment.
수고하셨습니다-! 디자이너 10번 깊게 빠져본 경험 500자 적용이 안된 것 같아요!
이것만 확인 부탁드릴게요
저는 500자로 뜨긴 하는데 어느 부분이 안 된 것처럼 보이는 걸까요..? |
|
엇 캐시문제엿나 500자 확인됐습니다 감사합니다 ! |
관련 이슈
작업 분류
PR을 통해 해결하려는 문제가 무엇인가요? 🚀
PR에서 핵심적으로 변경된 부분이 어떤 부분인가요? 👀
핵심 변경사항 이외 추가적으로 변경된 사항이 있나요? ➕
추가적으로, 리뷰어가 리뷰하며 알아야 할 정보가 있나요? 🙌
이런 부분을 신경써서 봐주셨으면 좋겠어요. 🙋🏻♂️
체크리스트 ✅
reviewers설정assignees설정label설정