Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
priscilawebdev committed Oct 16, 2024
1 parent 5e9e581 commit ef77886
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions static/app/components/onboardingWizard/newSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,17 @@ function TaskGroup({title, description, tasks, expanded, hidePanel}: TaskGroupPr

return (
<TaskGroupWrapper>
<TaskGroupHeader onClick={() => setIsExpanded(!isExpanded)}>
<TaskGroupHeader role="button" onClick={() => setIsExpanded(!isExpanded)}>
<InteractionStateLayer />
<div>
<strong>{title}</strong>
<p>{description}</p>
</div>
<Chevron direction={isExpanded ? 'up' : 'down'} role="button" size="large" />
<Chevron
direction={isExpanded ? 'up' : 'down'}
role="presentation"
size="large"
/>
</TaskGroupHeader>
{isExpanded && (
<Fragment>
Expand Down

0 comments on commit ef77886

Please sign in to comment.