Merge branch 'master' into dev

This commit is contained in:
张成
2025-11-15 12:33:45 +08:00
7 changed files with 45 additions and 49 deletions

View File

@@ -18,7 +18,7 @@ import Participants from "./components/Participants";
import SupplementalNotes from "./components/SupplementalNotes";
import OrganizerInfo from "./components/OrganizerInfo";
import SharePopup from "./components/SharePopup";
import { navto, toast, useSceneRedirect } from "./utils/helper";
import { navto, toast } from "./utils/helper";
import ArrowLeft from "@/static/detail/icon-arrow-left.svg";
import Logo from "@/static/detail/icon-logo-go.svg";
import styles from "./index.module.scss";
@@ -37,8 +37,6 @@ function Index() {
const { statusNavbarHeightInfo } = useGlobalState();
const { statusBarHeight, navBarHeight } = statusNavbarHeightInfo;
useSceneRedirect("game_pages/detail/index");
const isMyOwn = userInfo.id === myInfo.id;
const sharePopupRef = useRef<any>(null);
@@ -254,4 +252,6 @@ function Index() {
);
}
export default withAuth(Index);
// export default withAuth(Index);
const ExportPage = withAuth(Index);
export default ExportPage;