mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
import { JellyseerrSettings } from "@/components/settings/Jellyseerr";
|
|
import { useSettings } from "@/utils/atoms/settings";
|
|
import DisabledSetting from "@/components/settings/DisabledSetting";
|
|
|
|
export default function page() {
|
|
const [settings, updateSettings, pluginSettings] = useSettings();
|
|
|
|
return (
|
|
<DisabledSetting
|
|
disabled={pluginSettings?.jellyseerrServerUrl?.locked === true}
|
|
className="p-4"
|
|
>
|
|
<JellyseerrSettings />
|
|
</DisabledSetting>
|
|
);
|
|
}
|