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

Typo Update accordion.tsx #14338

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open

Typo Update accordion.tsx #14338

wants to merge 1 commit into from

Conversation

0xwitty
Copy link

@0xwitty 0xwitty commented Nov 9, 2024

Description

There is a minor typo in the className of the ChevronNext icon inside the AccordionTrigger component.

  • In this line:
    <ChevronNext className="size-[1em] shrink-0 text-2xl transition-transform duration-200" />
    The size-[1em] class is incorrect because size-[...] is not a valid Tailwind CSS class. It should likely be w-[1em] h-[1em] to set the width and height to 1em.

Correction:

<ChevronNext className="w-[1em] h-[1em] shrink-0 text-2xl transition-transform duration-200" />

This change correctly applies 1em size to both the width and height of the icon.

Fixed.

There is a minor typo in the className of the ChevronNext icon inside the AccordionTrigger component.
Copy link

netlify bot commented Nov 9, 2024

Deploy Preview for ethereumorg ready!

Name Link
🔨 Latest commit 3c8b279
🔍 Latest deploy log https://app.netlify.com/sites/ethereumorg/deploys/672f8a57b42d3300084d60fe
😎 Deploy Preview https://deploy-preview-14338--ethereumorg.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
7 paths audited
Performance: 45 (🔴 down 11 from production)
Accessibility: 92 (no change from production)
Best Practices: 89 (🔴 down 9 from production)
SEO: 99 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant