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 { projectsRef } from "../../config/firebase";
|
||||
import useDataFromRef from "../../hooks/useDataFromRef";
|
||||
import Page from "../../layouts/Page";
|
||||
import { useUser } from "../../providers/UserDataProvider";
|
||||
import PlaybackItem from "./components/PlaybackItem.web";
|
||||
|
||||
@@ -207,11 +206,6 @@ const Playbacks = () => {
|
||||
);
|
||||
|
||||
return (
|
||||
<Page
|
||||
headerType="NONE"
|
||||
width="100%"
|
||||
containerStyle={{ padding: 0, margin: 0 }}
|
||||
>
|
||||
<View style={styles.screen}>
|
||||
{activeVideoUrl ? (
|
||||
<View pointerEvents="none" style={styles.backgroundVideoWrapper}>
|
||||
@@ -263,7 +257,7 @@ const Playbacks = () => {
|
||||
scrollEventThrottle={16}
|
||||
/>
|
||||
</View>
|
||||
</Page>
|
||||
// </Page>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user