Skip to content

Commit

Permalink
CDE-54 fix: fix lint and build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aiga115 committed Feb 29, 2024
1 parent 30ea4e3 commit 85eda49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/components/common/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Checkbox from "../common/CheckBox";

interface FiltersProps {
anchorEl: Element | null;
handleClose: () => void;
handleClose: (e: React.MouseEvent<HTMLButtonElement>) => void;
open: boolean;
id: string | undefined;
}
Expand Down
7 changes: 3 additions & 4 deletions lib/components/common/StyledCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ import {vars} from '../../theme/variables';
const {baseWhite, primary50, primary600, primary800, gray100, gray300, gray500, gray700} = vars

interface StyledCardProps {
value: number;
value: string;
isSuggested?: boolean;
selectedValue: number;
onChange: (value: number) => void;
label: string;
selectedValue: string;
onChange: (value: string) => void;
handleTourNextStepClick: () => void;
}

Expand Down
3 changes: 3 additions & 0 deletions lib/components/steps/mapping/CollectionsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ function CollectionsTab({ changeToNextTab, setDefaultCollection }: CollectionsPr
changeToNextTab();
};

console.log("collections: ", collectionKeys)
console.log("chto za hren?: ", collections[collectionKeys[0]].name)

return (
<>
<ModalHeightWrapper height="11.5rem">
Expand Down

0 comments on commit 85eda49

Please sign in to comment.