Merge branch 'develop' of https://github.com/streamyfin/streamyfin into develop

This commit is contained in:
Fredrik Burmester
2025-02-21 20:38:45 +01:00
2 changed files with 4 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import { nestedTabPageScreenOptions } from "@/components/stacks/NestedTabPageStack";
import { Feather } from "@expo/vector-icons";
import { Ionicons, Feather } from "@expo/vector-icons";
import { Stack, useRouter } from "expo-router";
import { Platform, TouchableOpacity, View } from "react-native";
import { useTranslation } from "react-i18next";
@@ -152,9 +152,9 @@ const SessionsButton = () => {
}}
>
<View className="mr-4">
<Feather
name="play"
color={sessions.length === 0 ? "white" : "purple"}
<Ionicons
name="play-circle"
color={sessions.length === 0 ? "white" : "#9333ea"}
size={22}
/>
</View>

View File

@@ -12,7 +12,6 @@ import { QuickConnect } from "@/components/settings/QuickConnect";
import { StorageSettings } from "@/components/settings/StorageSettings";
import { SubtitleToggles } from "@/components/settings/SubtitleToggles";
import { UserInfo } from "@/components/settings/UserInfo";
import { Dashboard } from "@/components/settings/Dashboard";
import { useHaptic } from "@/hooks/useHaptic";
import { useJellyfin } from "@/providers/JellyfinProvider";
import { clearLogs } from "@/utils/log";
@@ -64,8 +63,6 @@ export default function settings() {
<View className="p-4 flex flex-col gap-y-4">
<UserInfo />
{user && user.Policy?.IsAdministrator && <Dashboard className="mb-4" />}
<QuickConnect className="mb-4" />
<MediaProvider>