Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes AI buttons in the sidebar going blank after closing the metabox #21439

Merged
Prev Previous commit
Next Next commit
Corrects linter error
  • Loading branch information
Jordi-PV committed Jun 18, 2024
commit 8e625323a3f3df7fc54516ab6f6a74f761b1dca6
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const testCases = [

describe.each( testCases )( "SparklesIcon", ( { name, pressed } ) => {
test( `should render the SparklesIcon component when ${name}`, () => {
const { container } = render( <SparklesIcon pressed={ pressed } gradientId={ "gradient-0kdmaht" }/> );
const { container } = render( <SparklesIcon pressed={ pressed } gradientId={ "gradient-0kdmaht" } /> );

expect( container ).toMatchSnapshot();
} );
Expand Down
Loading