Skip to content

Commit

Permalink
fix: newsletters Lists indentation (#2797)
Browse files Browse the repository at this point in the history
  • Loading branch information
leogermani authored Dec 22, 2023
1 parent 64d7817 commit 1af3c23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assets/wizards/engagement/views/newsletters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,9 @@ export const SubscriptionLists = ( { lockedLists, onUpdate, initialProvider } )
toggleOnChange={ handleChange( index, 'active' ) }
toggleChecked={ list.active }
className={
'mailchimp-group' === list?.type ? 'newspack-newsletters-group-list-item' : ''
list?.id && list.id.startsWith( 'group' )
? 'newspack-newsletters-group-list-item'
: ''
}
actionText={
list?.edit_link ? (
Expand Down

0 comments on commit 1af3c23

Please sign in to comment.