diff --git a/src/components/AiMarketplace/MainSection/Filter/styles.js b/src/components/AiMarketplace/MainSection/Filter/styles.js index 719481a6..cbd433cc 100644 --- a/src/components/AiMarketplace/MainSection/Filter/styles.js +++ b/src/components/AiMarketplace/MainSection/Filter/styles.js @@ -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", diff --git a/src/components/AiMarketplace/MainSection/index.js b/src/components/AiMarketplace/MainSection/index.js index 7e470f00..d52f2135 100644 --- a/src/components/AiMarketplace/MainSection/index.js +++ b/src/components/AiMarketplace/MainSection/index.js @@ -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 ( @@ -55,7 +55,6 @@ class MainSection extends Component { handleSearchChange={this.handlePaginationChange} toggleView={this.toggleView} currentPagination={pagination} - currentFilter={currentFilter} showToggler={isDesktop} />