Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 && (
Copy link

Copilot AI Mar 20, 2026

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).

Copilot uses AI. Check for mistakes.
<View className='gap-2 rounded-b-[8px] bg-gray-100 px-[14px]'>
<ProblemViewer
Comment on lines 29 to 34
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change removes concept tag rendering entirely, meaning concept tags will never display even when pointing.concepts is present. If the intent is to 'fix' how concept tags appear (per PR title), consider restoring the block and adjusting the underlying layout/styling/condition that caused the visual bug (e.g., render inside the correct container, align backgrounds/rounded corners with adjacent sections, or gate rendering based on the exact broken scenario), rather than deleting the feature.

Copilot uses AI. Check for mistakes.
Expand Down
Loading