Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/46d99b02b1c992c7b8dde2150217ed9ce326b7a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
9 additions and
5 deletions
@ -116,7 +116,11 @@ const Modal: React.FC<ModalProps> = ({
{ iconSvg }
< / div >
) }
< div className = "mt-3 text-center sm:mt-0 sm:text-left mb-6" >
< div
className = { ` mt-3 text-center sm:mt-0 sm:text-left ${
iconSvg ? 'sm:ml-4' : 'mb-6'
} ` }
>
{ title && (
< h3
className = "text-lg leading-6 font-medium text-white"
@ -186,7 +186,7 @@ const RadarrModal: React.FC<RadarrModalProps> = ({
? 'Saving...'
: ! ! radarr
? 'Save Changes'
: ' Create Instance '
: ' Add Server '
}
secondaryButtonType = "warning"
secondaryText = { isTesting ? 'Testing...' : 'Test' }
@ -252,7 +252,7 @@ const SettingsServices: React.FC = () => {
clipRule = "evenodd"
/ >
< / svg >
Add New Radarr Instance
Add Radarr Server
< / Button >
< / div >
< / li >
@ -314,7 +314,7 @@ const SettingsServices: React.FC = () => {
clipRule = "evenodd"
/ >
< / svg >
Add New Sonarr Instance
Add Sonarr Server
< / Button >
< / div >
< / li >
@ -186,7 +186,7 @@ const SonarrModal: React.FC<SonarrModalProps> = ({
? 'Saving...'
: ! ! sonarr
? 'Save Changes'
: ' Create Instance '
: ' Add Server '
}
secondaryButtonType = "warning"
secondaryText = { isTesting ? 'Testing...' : 'Test' }