Skip to content

Commit

Permalink
ci: added show titles instead of episode titles (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicpotato137 authored Oct 17, 2023
1 parent 2e768d9 commit b5779ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/App/SideBar/YouTube/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { useEffect, useRef, useState } from 'react'
import ReactPlayer from 'react-player'
import styled from 'styled-components'
import { Booster } from '~/components/Booster'
import { Divider } from '~/components/common/Divider'
import { Flex } from '~/components/common/Flex'
import { useDataStore } from '~/stores/useDataStore'
import { formatDescription } from '~/utils/formatDescription'
import { videoTimetoSeconds } from '~/utils/videoTimetoSeconds'
import { BoostAmt } from '../../Helper/BoostAmt'
import { Episode } from '../Relevance/Episode'
import { Transcript } from '../Transcript'
import { BoostAmt } from '../../Helper/BoostAmt'
import { Booster } from '~/components/Booster'
import { Divider } from '~/components/common/Divider'

export const YouTube = () => {
const selectedNode = useDataStore((s) => s.selectedNode)
Expand All @@ -24,7 +24,7 @@ export const YouTube = () => {
boost,
type,
id,
episode_title: episodeTitle,
show_title: showTitle,
ref_id: refId,
} = selectedNode || {}

Expand Down Expand Up @@ -56,7 +56,7 @@ export const YouTube = () => {
imageUrl={imageUrl || 'video_default.svg'}
isSelectedView
onClick={() => null}
title={episodeTitle}
title={showTitle}
type={type}
/>
<StyledDivider />
Expand Down

0 comments on commit b5779ef

Please sign in to comment.