-
Notifications
You must be signed in to change notification settings - Fork 0
Fix/#162 2차 QA 반영 #167
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
Merged
The head ref may contain hidden characters: "fix/#162-2\uCC28-qa"
Merged
Fix/#162 2차 QA 반영 #167
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
060b5b2
chore: #162 버전업
y-eonee d8cb60e
fix: #162 디자인 2차 QA 반영
y-eonee 73a72d3
fix: #162 스크롤뷰 탑 그라데이션 안보이던 것 수정
y-eonee 8861cb5
chore: #162 데모데이용으로 변경
y-eonee 3ada98a
feat: #162 기디 수정사항 반영
y-eonee cd0d3e1
style: #162 디자인 수정사항 반영
y-eonee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
🧹 Nitpick | 🔵 Trivial
중복 가능성이 있는 여백 설정
Line 38의
.padding(.top, 17.adjustedH)와 Line 40-41의Spacer()가 함께 사용되고 있습니다.Spacer()가 남은 공간을 채우므로, 상단 패딩이 의도한 레이아웃인지 확인해 주세요. 만약 고정된 간격이 필요하다면 패딩 대신Spacer().frame(height:)를 사용하는 것이 더 명확할 수 있습니다.♻️ 제안된 대안
TypographyText("잠시만 기다려주세요!", style: .title2_m_16, color: .gray800) .frame(height: 24.adjustedH) - .padding(.top, 17.adjustedH) Spacer() + .frame(minHeight: 17.adjustedH)📝 Committable suggestion
🤖 Prompt for AI Agents