Skip to content

Commit

Permalink
[getsentry/action-github-commit] Auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
getsantry[bot] authored Feb 6, 2025
1 parent 32baa4b commit 975c694
Showing 1 changed file with 43 additions and 44 deletions.
87 changes: 43 additions & 44 deletions src/components/sdkOption/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export function SdkOption({

return (
<PlatformCategorySection supported={categorySupported}>

<div className={styles["sdk-config-option"]}>
<div className={styles['sdk-config-option']}>
<h3 id={name} aria-label={name} data-sdk-option>
<a href={`#${name}`}>
<svg
Expand All @@ -48,51 +47,51 @@ export function SdkOption({
{name}
</a>
</h3>
<div className={styles["sdk-config-option-details"]}>
<table className={styles["sdk-option-table"]}>
<div className={styles['sdk-config-option-details']}>
<table className={styles['sdk-option-table']}>
<tbody>
{type && (
<tr>
<th>Type</th>
<td>
<code>{type}</code>
</td>
</tr>
)}
{defaultValue && (
<tr>
<th>Default</th>
<td>
<code>{defaultValue}</code>
</td>
</tr>
)}
<PlatformCategorySection supported={['server', 'serverless']}>
<PlatformSection notSupported={['javascript.nextjs']}>
{envVar && (
<tr>
<th>ENV Variable</th>
<td>
<code>{envVar}</code>
</td>
</tr>
)}
</PlatformSection>
</PlatformCategorySection>
{type && (
<tr>
<th>Type</th>
<td>
<code>{type}</code>
</td>
</tr>
)}
{defaultValue && (
<tr>
<th>Default</th>
<td>
<code>{defaultValue}</code>
</td>
</tr>
)}
<PlatformCategorySection supported={['server', 'serverless']}>
<PlatformSection notSupported={['javascript.nextjs']}>
{envVar && (
<tr>
<th>ENV Variable</th>
<td>
<code>{envVar}</code>
</td>
</tr>
)}
</PlatformSection>
</PlatformCategorySection>

{showBrowserOnly && (
<tr>
<th>Only available on</th>
<td>Client</td>
</tr>
)}
{showBrowserOnly && (
<tr>
<th>Only available on</th>
<td>Client</td>
</tr>
)}

{showServerLikeOnly && (
<tr>
<th>Only available on</th>
<td>Server</td>
</tr>
)}
{showServerLikeOnly && (
<tr>
<th>Only available on</th>
<td>Server</td>
</tr>
)}
</tbody>
</table>

Expand Down

0 comments on commit 975c694

Please sign in to comment.