fix(web/m7-352): use typographic apostrophe in failed-variant copy

This commit is contained in:
2026-05-04 19:16:25 -04:00
parent b8f9b3891b
commit 26f4c7a79f
2 changed files with 2 additions and 2 deletions
@@ -17,7 +17,7 @@ describe('PlaylistPlaceholderCard', () => {
test('failed variant shows failure copy and does NOT pulse', () => {
const { container } = render(PlaylistPlaceholderCard, { props: { label: 'For You', variant: 'failed' } });
expect(screen.getByText(/Couldn't build this mix/i)).toBeInTheDocument();
expect(screen.getByText(/Couldn.t build this mix/i)).toBeInTheDocument();
const cover = container.querySelector('[data-variant="failed"] .aspect-square');
expect(cover?.className).not.toMatch(/animate-pulse/);
});