From c79f9c5c249497977ecd8a25a0bb605a35770330 Mon Sep 17 00:00:00 2001 From: Ryo Takaishi Date: Thu, 28 Nov 2024 09:39:10 +0900 Subject: [PATCH] chore: disable LT timetable --- src/pages/[eventAbbr]/ui/index.tsx | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/src/pages/[eventAbbr]/ui/index.tsx b/src/pages/[eventAbbr]/ui/index.tsx index 9120539f..6da6a245 100644 --- a/src/pages/[eventAbbr]/ui/index.tsx +++ b/src/pages/[eventAbbr]/ui/index.tsx @@ -11,8 +11,6 @@ import { ENV } from '../../../config' import { useRouter } from 'next/router' import { useSelector } from 'react-redux' import { authSelector } from '../../../store/auth' -import { TrackLTView } from '../../../components/TrackLT' -import { showLTSelector } from '../../../store/settings' const IndexPage: NextPage = () => { return @@ -23,7 +21,6 @@ const IndexMain = () => { const { event } = useInitSetup(eventAbbr) const { refetch } = useGetTalksAndTracks() const { roles, dkUrl } = useSelector(authSelector) - const showLT = useSelector(showLTSelector) const router = useRouter() // NOTE: TrailMapが必要になったら、以下の3つとpointEventSavingのガードのコメントアウトを解除する @@ -54,36 +51,11 @@ const IndexMain = () => { // ) // } - const content = `各セッションの休憩時間に、技術コミュニティからのLTを行います! - -タイムテーブル -13:00-13:05 一般社団法人LOCAL -13:05-13:10 PHPカンファレンス北海道 -13:10-13:15 JBUG札幌 -14:05-14:10 学生団体Keisei -14:10-14:15 TechRAMEN Conference -15:05-15:10 札幌PHP勉強会 -15:10-15:15 フロントエンドカンファレンス北海道 -16:05-16:10 ゆるWeb勉強会@札幌 -16:10-16:15 SC4Y -17:05-17:10 Jagu'e'r -17:10-17:15 JAWS-UG 札幌 -` - return ( - {showLT ? ( - - ) : ( - - )} + )