Browse Source

#297

feature/297
みてるぞ 5 days ago
parent
commit
23d9cf8ad0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      frontend/src/pages/theatres/TheatreDetailPage.tsx

+ 2
- 2
frontend/src/pages/theatres/TheatreDetailPage.tsx View File

@@ -185,7 +185,7 @@ export default (() => {
return () => {
cancelled = true
}
}, [id, loading, theatreInfo.hostFlg, theatreInfo.postId])
}, [id, theatreInfo.hostFlg, theatreInfo.postId])

useEffect (() => {
setVideoLength (0)
@@ -246,7 +246,7 @@ export default (() => {
{post ? (
<>
<PostEmbed
key={post ? `${ post.id }:${ theatreInfo.postStartedAt ?? '' }` : 'empty'}
key={post.id}
ref={embedRef}
post={post}
onLoadComplete={info => {


Loading…
Cancel
Save