added return value of selectCaptionById from selectLanguage function

This commit is contained in:
Ashutosh Shinde 2024-01-09 10:43:20 +05:30
parent 65efb65bc8
commit 803668b492

View File

@ -35,7 +35,7 @@ export function useCaptions() {
async (language: string) => {
const caption = captionList.find((v) => v.language === language);
if (!caption) return;
selectCaptionById(caption.id);
return selectCaptionById(caption.id);
},
[captionList, selectCaptionById],
);