Skip to content

Commit

Permalink
Fix bad feature flag forcing use of RN Video player
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD committed May 30, 2024
1 parent 926da43 commit 424aaf9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ export const AppDrawerScreen = memo(
() => {
const [gesturesDisabled, setGesturesDisabled] = useState(false)

const useRNVideoPlayer = useFeatureFlag(FeatureFlags.USE_RN_VIDEO_PLAYER)
const { isEnabled: useRNVideoPlayer } = useFeatureFlag(
FeatureFlags.USE_RN_VIDEO_PLAYER
)

const drawerScreenOptions = useMemo(
() => ({
Expand Down

0 comments on commit 424aaf9

Please sign in to comment.