Skip to content

Commit

Permalink
(hds-1968) Fixed terminal error related to mini-css-extract-plugin
Browse files Browse the repository at this point in the history
Error message listed hero and breadcrumb mdx files having wrong order of css files compared to others.

Error: Conflicting order. Following module has been added [list] despite it was not able to fulfill desired ordering with these modules: [list] couldn't fulfill desired order of chunk group(s)

Fixed by re-ordering component imports .
  • Loading branch information
NikoHelle committed Dec 7, 2023
1 parent 63c5d36 commit 7241e5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion site/src/docs/components/breadcrumb/tabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ slug: '/components/breadcrumb/tabs'
title: 'Breadcrumb'
---

import StatusLabelTooltip from '../../../components/StatusLabelTooltip';
import LeadParagraph from '../../../components/LeadParagraph';
import Layout from '../../../components/layout';
import PageTabs from '../../../components/PageTabs';
import StatusLabelTooltip from '../../../components/StatusLabelTooltip';
import StatusLabel from '../../../components/StatusLabel';

# Breadcrumb
Expand Down
2 changes: 1 addition & 1 deletion site/src/docs/components/hero/tabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ slug: '/components/hero/tabs'
title: 'Hero'
---

import StatusLabelTooltip from '../../../components/StatusLabelTooltip';
import LeadParagraph from '../../../components/LeadParagraph';
import Layout from '../../../components/layout';
import PageTabs from '../../../components/PageTabs';
import StatusLabelTooltip from '../../../components/StatusLabelTooltip';
import StatusLabel from '../../../components/StatusLabel';

# Hero
Expand Down

0 comments on commit 7241e5e

Please sign in to comment.