fix playbacks view

This commit is contained in:
2025-10-02 15:59:46 +02:00
parent e566052766
commit 887358645e
+1 -7
View File
@@ -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>
);
};