-
Notifications
You must be signed in to change notification settings - Fork 2
[fix/native/scrap-#242] 개념태그 보이는 오류 수정 #243
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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,15 +29,6 @@ export const PointingsList = ({ pointingsWithLabels, shouldShowPointing }: Point | |
| <ProblemViewer problemContent={pointing.questionContent} padding={16} /> | ||
| </View> | ||
| )} | ||
| {pointing.concepts && pointing.concepts.length > 0 && ( | ||
| <View className='flex-row flex-wrap gap-1 bg-white px-[14px]'> | ||
| {pointing.concepts.map((concept) => ( | ||
| <View key={concept.id} className='rounded-full bg-blue-100 px-2 py-1'> | ||
| <Text className='text-12r text-blue-700'>{concept.name}</Text> | ||
| </View> | ||
| ))} | ||
| </View> | ||
| )} | ||
| {pointing.commentContent && ( | ||
| <View className='gap-2 rounded-b-[8px] bg-gray-100 px-[14px]'> | ||
| <ProblemViewer | ||
|
Comment on lines
29
to
34
|
||
|
|
||
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.
The PR description still contains placeholder items ('내용1', '설명') and doesn’t explain why concept tag rendering was removed or what specific 'visibility error' is being addressed. Please update the description with the concrete bug scenario and the rationale for removing vs. fixing the concept tag UI (and, if applicable, screenshots/before-after).