From fef4404d2df908419844e370bae2f717e12dde0a Mon Sep 17 00:00:00 2001 From: zhengqi zhang <770166635@qq.com> Date: Mon, 15 Jul 2024 15:34:15 +0800 Subject: [PATCH] save --- src/pages/community/Events/List.tsx | 2 +- src/pages/community/Events/RegionSelect.tsx | 2 +- src/pages/community/Events/TimeSelect.tsx | 2 +- src/pages/community/Events/index.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/community/Events/List.tsx b/src/pages/community/Events/List.tsx index d060ccac..ec1c7303 100644 --- a/src/pages/community/Events/List.tsx +++ b/src/pages/community/Events/List.tsx @@ -6,7 +6,7 @@ import { Box, Button, SvgIcon } from "@mui/material" // import { communityEventListUrl } from "@/apis/community" import { ReactComponent as ArrowSvg } from "@/assets/svgs/ecosystem/arrow.svg" import SuccessionToView, { SuccessionItem } from "@/components/Motion/SuccessionToView" -import { COMMUNITY_REGION_LIST, COMMUNITY_TIME_LIST } from "@/constants" +import { COMMUNITY_REGION_LIST, COMMUNITY_TIME_LIST } from "@/constants/community" import Card from "./EventCard" import generateMockData from "./mock" diff --git a/src/pages/community/Events/RegionSelect.tsx b/src/pages/community/Events/RegionSelect.tsx index b303769f..310c37b6 100644 --- a/src/pages/community/Events/RegionSelect.tsx +++ b/src/pages/community/Events/RegionSelect.tsx @@ -3,7 +3,7 @@ import { useTheme } from "@mui/material/styles" import { ReactComponent as RegionIcon } from "@/assets/svgs/community/region.svg" import Select from "@/components/Select" -import { COMMUNITY_REGION_LIST } from "@/constants" +import { COMMUNITY_REGION_LIST } from "@/constants/community" const RegionSelect = props => { const { sticky, top, value, onChange } = props diff --git a/src/pages/community/Events/TimeSelect.tsx b/src/pages/community/Events/TimeSelect.tsx index 0d3587ff..e590d483 100644 --- a/src/pages/community/Events/TimeSelect.tsx +++ b/src/pages/community/Events/TimeSelect.tsx @@ -3,7 +3,7 @@ import { useTheme } from "@mui/material/styles" import { ReactComponent as TimeIcon } from "@/assets/svgs/community/time.svg" import Select from "@/components/Select" -import { COMMUNITY_TIME_LIST } from "@/constants" +import { COMMUNITY_TIME_LIST } from "@/constants/community" const TimeSelect = props => { const { sticky, top, value, onChange } = props diff --git a/src/pages/community/Events/index.tsx b/src/pages/community/Events/index.tsx index 52d1808d..30a367b1 100644 --- a/src/pages/community/Events/index.tsx +++ b/src/pages/community/Events/index.tsx @@ -4,7 +4,7 @@ import { Stack, Typography } from "@mui/material" // import SuccessionToView, { SuccessionItem } from "@/components/Motion/SuccessionToView" import SectionWrapper from "@/components/SectionWrapper" -import { COMMUNITY_REGION_LIST, COMMUNITY_TIME_LIST } from "@/constants" +import { COMMUNITY_REGION_LIST, COMMUNITY_TIME_LIST } from "@/constants/community" import List from "./List" import RegionSelect from "./RegionSelect"