Chore/update button link#35
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request refactors documentation by introducing reusable MDX components for the 'Ready to Get Started' and 'Support and Community' sections, while also adding a new Integrations category and a detailed Webhooks setup guide. Feedback highlights the need for default values in the RichCardOption component to prevent 'undefined' classes, corrections to step titles and references in the Webhooks documentation, and improvements to UX consistency regarding disabled links and forum URLs.
| } | ||
|
|
||
| export const RichCardOption = ({ icon, title, description, badge, href }) => { | ||
| export const RichCardOption = ({ icon, title, description, badge, href, className, badgeClassName }) => { |
There was a problem hiding this comment.
The className and badgeClassName props should have default values (e.g., empty strings) to prevent the string "undefined" from being included in the component's class list when they are not provided by the parent component.
| export const RichCardOption = ({ icon, title, description, badge, href, className, badgeClassName }) => { | |
| export const RichCardOption = ({ icon, title, description, badge, href, className = "", badgeClassName = "" }) => { |
| **On ChirpStack:** Select the ***Integrations*** tab from the top or side navigation bar. | ||
| </NumberWithMdx> | ||
| <NumberWithMdx number={3}> | ||
| **Navigate to Integrations**<br/> |
| </NumberWithMdx> | ||
| <NumberWithMdx number={4}> | ||
| **Fill in the Connection Details**<br/> | ||
| Enter the **Webhook URL** you copied in `Step 3`. Ensure the **Method** is set to `POST`. |
There was a problem hiding this comment.
| <tr className="border-b border-gray-100 dark:border-gray-800"> | ||
| <td className="py-3 text-gray-700 dark:text-gray-300">Device Not Appearing</td> | ||
| <td className="py-3 text-gray-700 dark:text-gray-300">DevEUI mismatch between platforms.</td> | ||
| <td className="py-3 text-gray-700 dark:text-gray-300">Ensure the `devEUI` in TTN/ChirpStack matches the one registered in **SpaceDF** exactly</td> |
|
|
||
| <Cards> | ||
| <Cards.Card | ||
| style={{pointerEvents: "none"}} |
There was a problem hiding this comment.
| /> | ||
| </RichCardOptions> | ||
|
|
||
| *More integrations coming soon. Have a request? [Let us know.](https://forum.df.technology/)* |
No description provided.