|
|
|
@ -3,6 +3,7 @@ import { useTranslation } from "react-i18next";
|
|
|
|
|
import { useAppSelector } from "../store";
|
|
|
|
|
import { locationService, memoService, userService } from "../services";
|
|
|
|
|
import useToggle from "../hooks/useToggle";
|
|
|
|
|
import { closeSidebar } from "../helpers/utils";
|
|
|
|
|
import Icon from "./Icon";
|
|
|
|
|
import "../less/tag-list.less";
|
|
|
|
|
|
|
|
|
@ -69,7 +70,7 @@ const TagList = () => {
|
|
|
|
|
}, [tagsText]);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="tags-wrapper">
|
|
|
|
|
<div className="tags-wrapper" onClick={closeSidebar}>
|
|
|
|
|
<p className="title-text">{t("common.tags")}</p>
|
|
|
|
|
<div className="tags-container">
|
|
|
|
|
{tags.map((t, idx) => (
|
|
|
|
|