Browse Source

updated CaptionOption key to use caption id instead of index and url in CaptionView

pull/725/head
Ashutosh Shinde 2 years ago
parent
commit
32dd68c90e
  1. 3
      src/components/player/atoms/settings/CaptionsView.tsx

3
src/components/player/atoms/settings/CaptionsView.tsx

@ -138,8 +138,7 @@ export function CaptionsView({ id }: { id: string }) { @@ -138,8 +138,7 @@ export function CaptionsView({ id }: { id: string }) {
return (
<CaptionOption
// key must use index to prevent url collisions
// eslint-disable-next-line react/no-array-index-key
key={`${i}-${v.url}`}
key={v.id}
countryCode={v.language}
selected={v.id === selectedCaptionId}
loading={v.id === currentlyDownloading && downloadReq.loading}

Loading…
Cancel
Save