Projects STRLCPY gradejs Commits 12880863
🤬
  • ■ ■ ■ ■
    packages/web/.storybook/main.js
    skipped 67 lines
    68 68   loader: 'svg-sprite-loader',
    69 69   options: {
    70 70   extract: true,
    71  - spriteFilename: 'sprite.svg',
     71 + spriteFilename: 'static/sprite.svg',
    72 72   },
    73 73   },
    74 74   ],
    skipped 8 lines
  • ■ ■ ■ ■
    packages/web/src/components/layouts/SearchResults/SearchResults.stories.tsx
    skipped 9 lines
    10 10   },
    11 11  } as ComponentMeta<typeof SearchResults>;
    12 12   
    13  -const Template: ComponentStory<typeof SearchResults> = (args) => <SearchResults {...args} />;
     13 +const Template: ComponentStory<typeof SearchResults> = () => <SearchResults />;
    14 14   
    15 15  export const Default = Template.bind({});
    16 16   
  • ■ ■ ■ ■ ■
    packages/web/src/components/ui/Button/Button.tsx
    skipped 5 lines
    6 6   className?: string;
    7 7   children: React.ReactNode;
    8 8   type?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'];
    9  - variant?: 'default' | 'arrow' | 'secondary';
     9 + // TODO fix types after redesign refactoring
     10 + variant?: 'default' | 'arrow' | 'secondary' | string;
    10 11   size?: 'small' | 'medium' | 'big';
    11 12   disabled?: boolean;
    12 13   onClick?: MouseEventHandler;
    skipped 53 lines
  • ■ ■ ■ ■
    packages/web/src/components/ui/SidebarCategory/SidebarCategory.tsx
    skipped 27 lines
    28 28   featuredItems: string[];
    29 29   };
    30 30   simpleCategory?: string[];
    31  - selectedKeywords: string[] | [];
     31 + selectedKeywords: string[];
    32 32   selectHandler: (name: string) => void;
    33 33   renderComponent: 'chip' | 'checkbox' | 'person';
    34 34   searchable?: boolean;
    skipped 154 lines
Please wait...
Page is in error, reload to recover