Skip to content

Commit

Permalink
Use div instead of span
Browse files Browse the repository at this point in the history
  • Loading branch information
nateweller authored Oct 22, 2024
1 parent c7b7dc8 commit 228dd2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ export default function FixerStatusIcon( {

if ( fixer && 'status' in fixer && fixer.status === 'in_progress' ) {
return (
<span className={ styles[ 'icon-spinner' ] }>
<div className={ styles[ 'icon-spinner' ] }>
<Spinner color="black" />
</span>
</div>
);
}

Expand Down

0 comments on commit 228dd2c

Please sign in to comment.