forked from Ninjalama/streamyfin_mirror
chore
This commit is contained in:
@@ -37,8 +37,6 @@ const Layout = () => {
|
||||
<Tab.Screen name="guide" />
|
||||
<Tab.Screen name="channels" />
|
||||
<Tab.Screen name="recordings" />
|
||||
<Tab.Screen name="schedule" />
|
||||
<Tab.Screen name="series" />
|
||||
</Tab>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -15,7 +15,7 @@ import React, { useState } from "react";
|
||||
import { Dimensions, ScrollView, View } from "react-native";
|
||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||
|
||||
const HOUR_HEIGHT = 30
|
||||
const HOUR_HEIGHT = 30;
|
||||
|
||||
export default function page() {
|
||||
const [api] = useAtom(apiAtom);
|
||||
@@ -102,7 +102,7 @@ export default function page() {
|
||||
}}
|
||||
></View>
|
||||
{channels?.Items?.map((c, i) => (
|
||||
<View className="h-16 w-16 mr-4 rounded-lg overflow-hidden">
|
||||
<View className="h-16 w-16 mr-4 rounded-lg overflow-hidden" key={i}>
|
||||
<ItemImage
|
||||
style={{
|
||||
width: "100%",
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
import { Text } from "@/components/common/Text";
|
||||
import React from "react";
|
||||
import { View } from "react-native";
|
||||
|
||||
export default function page() {
|
||||
return (
|
||||
<View>
|
||||
<Text>Not implemented</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
import { Text } from "@/components/common/Text";
|
||||
import React from "react";
|
||||
import { View } from "react-native";
|
||||
|
||||
export default function page() {
|
||||
return (
|
||||
<View>
|
||||
<Text>Not implemented</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
@@ -50,7 +50,7 @@ export const LiveTVGuideRow = ({
|
||||
return (
|
||||
<View key={channel.ChannelNumber} className="flex flex-row h-16">
|
||||
{programsWithPositions?.map((p) => (
|
||||
<TouchableItemRouter item={p}>
|
||||
<TouchableItemRouter item={p} key={p.Id}>
|
||||
<View
|
||||
style={{
|
||||
width: p.width,
|
||||
|
||||
Reference in New Issue
Block a user