Skip to content

Commit

Permalink
comment autocomplete component
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed Nov 30, 2023
1 parent c91316a commit 6c9cf72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/global/FilterPopover/FilterRolesPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TcPopover from '../../shared/TcPopover';
import TcSelect from '../../shared/TcSelect';
import TcCheckbox from '../../shared/TcCheckbox';
import { FormControl, FormControlLabel, ListItem } from '@mui/material';
import TcAutocomplete from '../../shared/TcAutocomplete';
// import TcAutocomplete from '../../shared/TcAutocomplete';

const mockRoles = [
{ name: 'Admin', id: 1, color: '#20d321' },
Expand Down Expand Up @@ -63,12 +63,12 @@ function FilterRolesPopover() {
]}
/>
</FormControl>
<TcAutocomplete
{/* <TcAutocomplete
options={autoCompleteOptions}
label={'Select a Role'}
value={autoCompleteValue}
onChange={handleAutoCompleteChange}
/>
/> */}
<div className="border border-gray-200 rounded-md p-1">
{mockRoles.map((role) => (
<ListItem key={role.id}>
Expand Down

0 comments on commit 6c9cf72

Please sign in to comment.