Skip to content

Commit

Permalink
Remove not needed cx function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekn committed Jul 16, 2024
1 parent ca29e98 commit ba3af50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/content-tab-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,13 +249,13 @@ export function ContentTabOverview( { selectedSite }: ContentTabOverviewProps )
{ ! loading && siteRunning && (
<button
aria-label={ __( 'Open site' ) }
className={ cx( `relative group focus-visible:outline-a8c-blueberry` ) }
className={ 'relative group focus-visible:outline-a8c-blueberry' }
onClick={ () => getIpcApi().openSiteURL( selectedSite.id ) }
>
<div
className={ cx(
`opacity-0 group-hover:opacity-90 group-hover:bg-white duration-300 absolute size-full flex justify-center items-center bg-white text-a8c-blueberry`
) }
className={
'opacity-0 group-hover:opacity-90 group-hover:bg-white duration-300 absolute size-full flex justify-center items-center bg-white text-a8c-blueberry'
}
>
{ __( 'Open site' ) }
<Icon
Expand Down

0 comments on commit ba3af50

Please sign in to comment.