Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Summary of ChangesHello @didwjdgns99, 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은 이미지 업로드 기능의 아이콘을 변경하여 리팩토링하는 것을 주요 목표로 합니다. 새로운 FallbackImage SVG 아이콘을 도입하고, ImageUpload 컴포넌트가 기존의 PasswordHidden 아이콘 대신 이 새로운 아이콘을 사용하도록 업데이트했습니다. 또한, ReservationPage 컴포넌트에서 사소한 CSS 조정이 이루어졌습니다. Highlights
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
|
src/pages/ReservationPage.tsx
Outdated
| </div> | ||
| {hasAnyReservation && ( | ||
| <div className='scrollbar-hide mr-6 flex flex-nowrap gap-2 overflow-x-auto pb-[13px] md:pb-7.5'> | ||
| <div className='scrollbar-hide mr-6 flex flex-nowrap gap-2 pb-[13px] md:pb-7.5'> |
There was a problem hiding this comment.
overflow-x-auto 클래스가 제거되었습니다. 필터 버튼들이 한 줄에 표시되도록 flex-nowrap이 적용되어 있는데, 화면 너비가 좁을 경우 일부 버튼이 잘려서 보이지 않게 될 수 있습니다. 사용자가 모든 필터 옵션에 접근할 수 있도록 overflow-x-auto를 다시 추가하여 가로 스크롤이 가능하도록 하는 것을 권장합니다.
| <div className='scrollbar-hide mr-6 flex flex-nowrap gap-2 pb-[13px] md:pb-7.5'> | |
| <div className='scrollbar-hide mr-6 flex flex-nowrap gap-2 overflow-x-auto pb-[13px] md:pb-7.5'> |
| @@ -1,4 +1,4 @@ | |||
| import { Delete, PasswordHidden } from '@/assets/icons'; | |||
| import { Delete, FallbackImage, PasswordHidden } from '@/assets/icons'; | |||
le2yunji
left a comment
There was a problem hiding this comment.
src/components/common/image-upload/ImageUpload.tsx(1,33): error TS6133: 'PasswordHidden' is declared but its value is never read.
정훈님 해당 에러때문에 vercel 오류가 발생하고 있습니다 !
1. 코드 & 기능
🔗 이슈 번호
🎯 작업한 내용
💡 리뷰 요청 / 코멘트
🫧 참고사항
📸 스크린샷 (선택사항)