import React, { FunctionComponent, useCallback } from "react"; import { InputGroup } from "react-bootstrap"; import { Check, Chips, CollapseBox, Group, Input, Message, SettingsProvider, Slider, Text, URLTestButton, } from "../components"; import { PathMappingTable } from "../components/pathMapper"; import { moviesEnabledKey } from "../keys"; interface Props {} const SettingsRadarrView: FunctionComponent = () => { const baseUrlOverride = useCallback((settings: Settings) => { return settings.radarr.base_url?.slice(1) ?? ""; }, []); return ( Hostname or IPv4 Address / "/" + v} > Movies with those tags (case sensitive) in Radarr will be excluded from automatic download of subtitles. Automatic download of subtitles will only happen for monitored movies in Radarr. ); }; export default SettingsRadarrView;