File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
source/03-components/Accordion Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import { resolve } from 'node:path';
1010// @ts -ignore
1111import codegenConfig from '../../codegen' ;
1212// @ts -ignore
13- import drupal from '../../util/drupal' ;
13+ import drupal from '../../util/drupal/drupal ' ;
1414// @ts -ignore
15- import graphqlEndpoint from '../../util/graphqlEndpoint' ;
15+ import graphqlEndpoint from '../../util/drupal/ graphqlEndpoint' ;
1616
1717async function generateGraphQLTypes ( ) {
1818 try {
Original file line number Diff line number Diff line change @@ -9,11 +9,10 @@ import styles from './accordion.module.css';
99
1010// The Accordion component provides props itself for the AccordionItems,
1111// so omit those from the item objects.
12- interface BaseAccordionItem
13- extends Omit <
14- AccordionItemProps ,
15- 'accordionSpeed' | 'handleClick' | 'isStepList' | 'toggleRef'
16- > { }
12+ type BaseAccordionItem = Omit <
13+ AccordionItemProps ,
14+ 'accordionSpeed' | 'handleClick' | 'isStepList' | 'toggleRef'
15+ > ;
1716
1817interface AccordionProps extends GessoComponent {
1918 accordionItems : BaseAccordionItem [ ] ;
You can’t perform that action at this time.
0 commit comments