chakra-ui / chakra-ui-docs

Documentation website for chakra ui
https://chakra-ui.com
MIT License
299 stars 478 forks source link

docs: Fix missing comma in code example #1659

Closed shaikahmadnawaz closed 5 months ago

shaikahmadnawaz commented 9 months ago

Closes #1657

📝 Description

This PR addresses issue #1657 by adding a missing comma at the end of the line in the code example found at https://chakra-ui.com/docs/components/heading/theming#customizing-the-default-theme. The specific line that needs correction is the one containing fontWeight: "semibold".

⛳️ Current behavior (updates)

In the current documentation, there's a line of code missing a comma at the end.

fontWeight: "semibold"

🚀 New behavior

After this PR is merged, the code example in the documentation will be corrected to include the missing comma at the end of the line, like this:

fontWeight: "semibold",

💣 Is this a breaking change (Yes/No):

No.

📝 Additional Information

This change is a minor correction to the documentation and does not impact the functionality of Chakra UI. It ensures the code example is syntactically correct.

vercel[bot] commented 9 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
chakra-ui-docs ✅ Ready (Inspect) Visit Preview Sep 28, 2023 7:56am
cschroeter commented 5 months ago

Thanks mate