mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 07:05:08 +01:00
updated CaptionOption key to use caption id instead of index and url in CaptionView
This commit is contained in:
parent
ec4b2f73f3
commit
32dd68c90e
@ -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…
Reference in New Issue
Block a user