Skip to content

Commit

Permalink
[SPT-836] fixed styles of filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Marina Fedyantceva committed Jan 29, 2025
1 parent f3b49e1 commit 050d570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/components/AiMarketplace/MainSection/Filter/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export const useStyles = makeStyles((theme) => ({
display: "flex",
gap: 20,
justifyContent: "space-between",
"& .MuiSelect-select": {
color: theme.palette.text.primary,
},
"& svg": {
color: theme.palette.text.primary,
right: "0 !important",
Expand Down
3 changes: 1 addition & 2 deletions src/components/AiMarketplace/MainSection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class MainSection extends Component {
};

render() {
const { classes, services, pagination, currentFilter } = this.props;
const { classes, services, pagination } = this.props;
const { listView } = this.state;
return (
<Grid container className={classes.mainSection}>
Expand All @@ -55,7 +55,6 @@ class MainSection extends Component {
handleSearchChange={this.handlePaginationChange}
toggleView={this.toggleView}
currentPagination={pagination}
currentFilter={currentFilter}
showToggler={isDesktop}
/>
</Grid>
Expand Down

0 comments on commit 050d570

Please sign in to comment.