Skip to content

Commit

Permalink
[UI]: chip classname import (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
carcruz authored Oct 12, 2023
1 parent 391fed1 commit 3603118
Show file tree
Hide file tree
Showing 5 changed files with 556 additions and 539 deletions.
2 changes: 1 addition & 1 deletion apps/genetics/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.15.1
18.17.1
4 changes: 2 additions & 2 deletions apps/genetics/src/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
faFileAlt,
faCommentDots,
} from '@fortawesome/free-solid-svg-icons';
import { Footer, AutocompleteSearch } from 'ui';
import { Footer, GlobalSearch } from 'ui';
import Link from '../../components/Link';
import ScrollDownButton from '../../components/ScrollDownButton';
import NavBar from '../../components/NavBar/NavBar';
Expand Down Expand Up @@ -171,7 +171,7 @@ function HomePage() {
/>
<HomeBox name="Genetics">
<div style={{ position: 'relative' }}>
<AutocompleteSearch isHomePage />
<GlobalSearch isHomePage />
</div>
<Grid
container
Expand Down
3 changes: 2 additions & 1 deletion packages/tsconfig/vite.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"resolveJsonModule": true,
"skipLibCheck": false,
"target": "ESNext",
"types": ["vite/client"]
"types": ["vite/client"],
"allowSyntheticDefaultImports": true
}
}
2 changes: 1 addition & 1 deletion packages/ui/src/components/Chip.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as classNames from "classnames";
import classNames from "classnames";
import { makeStyles } from "@mui/styles";
import { Chip as MUIChip } from "@mui/material";

Expand Down
Loading

0 comments on commit 3603118

Please sign in to comment.