Skip to content

Commit 45b8911

Browse files
fix: pathing for component docs links
1 parent 8f0cf8a commit 45b8911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.storybook/blocks/ComponentDetails.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ export const MigratedComponentsList = () => {
486486
<ul className="sb-unstyled" style={{ columnCount: 3, columnGap: '1rem', listStyle: 'none', padding: 0, marginTop: '1rem' }}>
487487
{components.map((component, idx) => (
488488
<li key={`${component.name || component}-${idx}`} style={{ marginBottom: '0.5rem' }}>
489-
<a href={`/?path=/docs/components-${component.url}--docs`}>
489+
<a href={`./?path=/docs/components-${component.url}--docs`}>
490490
{component.title || (typeof component === 'string' ? component.charAt(0).toUpperCase() + component.slice(1) : '')}
491491
</a>
492492
</li>

0 commit comments

Comments
 (0)