diff --git a/src/components/modals/main/settings/ChipSelect.jsx b/src/components/modals/main/settings/ChipSelect.jsx
new file mode 100644
index 00000000..ec7c2547
--- /dev/null
+++ b/src/components/modals/main/settings/ChipSelect.jsx
@@ -0,0 +1,56 @@
+import { useState, memo, useEffect } from 'react';
+import { useTheme } from '@mui/material/styles';
+import Box from '@mui/material/Box';
+import OutlinedInput from '@mui/material/OutlinedInput';
+import InputLabel from '@mui/material/InputLabel';
+import MenuItem from '@mui/material/MenuItem';
+import FormControl from '@mui/material/FormControl';
+import Select from '@mui/material/Select';
+import Chip from '@mui/material/Chip';
+
+function ChipSelect({ label, options, name }) {
+ const [optionsSelected, setoptionsSelected] = useState([]);
+
+ const handleChange = (event) => {
+ const {
+ target: { value },
+ } = event;
+ setoptionsSelected(
+ typeof value === 'string' ? value.split(',') : value,
+ );
+ localStorage.setItem('apiCategories', optionsSelected)
+ };
+ console.log(localStorage.getItem('apiCategories'))
+
+
+ return (
+
+
+ {label}
+ }
+ renderValue={(optionsSelected) => (
+
+ {optionsSelected.map((value) => (
+
+ ))}
+
+ )}
+ >
+ {options.map((option) => (
+
+ ))}
+
+
+
+ );
+}
+
+export default memo(ChipSelect);
diff --git a/src/components/modals/main/settings/sections/background/Background.jsx b/src/components/modals/main/settings/sections/background/Background.jsx
index 2ead80c4..1131a7d7 100644
--- a/src/components/modals/main/settings/sections/background/Background.jsx
+++ b/src/components/modals/main/settings/sections/background/Background.jsx
@@ -5,6 +5,7 @@ import { MdSource, MdOutlineKeyboardArrowRight, MdOutlineAutoAwesome } from 'rea
import Header from '../../Header';
import Checkbox from '../../Checkbox';
+import ChipSelect from '../../ChipSelect';
import Dropdown from '../../Dropdown';
import Slider from '../../Slider';
import Radio from '../../Radio';
@@ -125,16 +126,25 @@ export default class BackgroundSettings extends PureComponent {
>
) : (
-
- {this.state.backgroundCategories.map((category) => (
-
- ))}
-
+ <>
+ {/*
+ {this.state.backgroundCategories.map((category) => (
+
+ ))}
+
+
+ */}
+ >
)}