diff --git a/frontend/src/components/QueueSelect/index.js b/frontend/src/components/QueueSelect/index.js index 22b0529..b80164e 100644 --- a/frontend/src/components/QueueSelect/index.js +++ b/frontend/src/components/QueueSelect/index.js @@ -7,6 +7,7 @@ import Select from "@material-ui/core/Select"; import Chip from "@material-ui/core/Chip"; import toastError from "../../errors/toastError"; import api from "../../services/api"; +import { i18n } from "../../translate/i18n"; const useStyles = makeStyles(theme => ({ chips: { @@ -33,17 +34,17 @@ const QueueSelect = ({ selectedQueueIds, onChange }) => { })(); }, []); - const handleChange = event => { - onChange(event.target.value); + const handleChange = e => { + onChange(e.target.value); }; return (
- Filas + {i18n.t("queueSelect.inputLabel")}