refactor: project configuration

This commit is contained in:
Tristan Yang
2023-05-15 16:46:50 +08:00
parent 187ffd24d1
commit 20b907aae4
293 changed files with 991 additions and 964 deletions
+10 -10
View File
@@ -5,16 +5,16 @@ import {
useGetChannelQuery,
useUpdateChannelMutation,
useUpdateIconMutation
} from "../../app/services/channel";
import AvatarUploader from "../../common/component/AvatarUploader";
import Input from "../../common/component/styled/Input";
import Label from "../../common/component/styled/Label";
import Radio from "../../common/component/styled/Radio";
import Textarea from "../../common/component/styled/Textarea";
import SaveTip from "../../common/component/SaveTip";
import IconChannel from "../../assets/icons/channel.svg";
import { useAppSelector } from "../../app/store";
import { Channel } from "../../types/channel";
} from "@/app/services/channel";
import AvatarUploader from "@/components/AvatarUploader";
import Input from "@/components/styled/Input";
import Label from "@/components/styled/Label";
import Radio from "@/components/styled/Radio";
import Textarea from "@/components/styled/Textarea";
import SaveTip from "@/components/SaveTip";
import IconChannel from "@/assets/icons/channel.svg";
import { useAppSelector } from "@/app/store";
import { Channel } from "@/types/channel";
import { useTranslation } from "react-i18next";