fix playbacks view
This commit is contained in:
@@ -3,7 +3,6 @@ import React, { useCallback, useEffect, useRef, useState } from "react";
|
|||||||
import { FlatList, StyleSheet, View, useWindowDimensions } from "react-native";
|
import { FlatList, StyleSheet, View, useWindowDimensions } from "react-native";
|
||||||
import { projectsRef } from "../../config/firebase";
|
import { projectsRef } from "../../config/firebase";
|
||||||
import useDataFromRef from "../../hooks/useDataFromRef";
|
import useDataFromRef from "../../hooks/useDataFromRef";
|
||||||
import Page from "../../layouts/Page";
|
|
||||||
import { useUser } from "../../providers/UserDataProvider";
|
import { useUser } from "../../providers/UserDataProvider";
|
||||||
import PlaybackItem from "./components/PlaybackItem.web";
|
import PlaybackItem from "./components/PlaybackItem.web";
|
||||||
|
|
||||||
@@ -207,11 +206,6 @@ const Playbacks = () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page
|
|
||||||
headerType="NONE"
|
|
||||||
width="100%"
|
|
||||||
containerStyle={{ padding: 0, margin: 0 }}
|
|
||||||
>
|
|
||||||
<View style={styles.screen}>
|
<View style={styles.screen}>
|
||||||
{activeVideoUrl ? (
|
{activeVideoUrl ? (
|
||||||
<View pointerEvents="none" style={styles.backgroundVideoWrapper}>
|
<View pointerEvents="none" style={styles.backgroundVideoWrapper}>
|
||||||
@@ -263,7 +257,7 @@ const Playbacks = () => {
|
|||||||
scrollEventThrottle={16}
|
scrollEventThrottle={16}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</Page>
|
// </Page>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user