Skip to content

Commit ddd1bd1

Browse files
committed
Change component link from absolute to relative
Using an absolute link shows as an error for some reason. Changing the absolute link to a relative link doesn't show an error and still imports the component.
1 parent 58a8d09 commit ddd1bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/DocItem/Layout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import DocItemContent from '@theme/DocItem/Content';
1212
import DocBreadcrumbs from '@theme/DocBreadcrumbs';
1313
import ContentVisibility from '@theme/ContentVisibility';
1414
import type {Props} from '@theme/DocItem/Layout';
15-
import SupportDropdownMenu from '@site/src/components/Support/SupportDropdownMenu'; // Import the support dropdown component.
15+
import SupportDropdownMenu from '../../../components/Support/SupportDropdownMenu'; // Import the support dropdown component.
1616

1717
import styles from './styles.module.css';
1818

0 commit comments

Comments
 (0)