Skip to content

Commit 1457cb5

Browse files
committed
fix: 발표 자료 URL은 가리도록 수정
1 parent 9f8479c commit 1457cb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/pyconkr/src/components/pages/presentation_detail.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export const PresentationDetailPage: React.FC = ErrorBoundary.with(
144144
const descriptionFallback = language === "ko" ? "해당 발표의 설명은 준비 중이에요!" : "Description of the presentation is under preparation!";
145145
const categoriesStr = language === "ko" ? "카테고리" : "Categories";
146146
const speakersStr = language === "ko" ? "발표자" : "Speakers";
147-
const slideShowStr = language === "ko" ? "발표 슬라이드" : "Presentation Slideshow";
147+
// const slideShowStr = language === "ko" ? "발표 슬라이드" : "Presentation Slideshow";
148148

149149
React.useEffect(() => {
150150
setAppContext((prev) => ({
@@ -175,15 +175,15 @@ export const PresentationDetailPage: React.FC = ErrorBoundary.with(
175175
<Divider flexItem />
176176
</>
177177
) : null}
178-
{presentation.slideshow_url && (
178+
{/* {presentation.slideshow_url && (
179179
<>
180180
<Typography variant="subtitle1" fontWeight="bold" sx={{ width: "100%", p: 2, a: { color: "blue" } }}>
181181
{slideShowStr} :&nbsp;
182182
<Common.Components.LinkHandler href={presentation.slideshow_url} children={presentation.slideshow_url} />
183183
</Typography>
184184
<Divider flexItem />
185185
</>
186-
)}
186+
)} */}
187187
{presentation.image && (
188188
<StyledPresentationImage
189189
alt="Presentation Image"

0 commit comments

Comments
 (0)