Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/f5fc0545a4255ae9249c0f7c9f51d3fa397d37e3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
4 deletions
@ -31,13 +31,17 @@ const UserDropdown: React.FC = () => {
< div className = "relative ml-3" >
< div >
< button
className = "flex items-center max-w-xs text-sm rounded-full focus:outline-none focus:ring"
className = "flex items-center max-w-xs text-sm rounded-full ring-1 ring-gray-700 focus:outline-none focus:ring-gray-500 "
id = "user-menu"
aria - label = "User menu"
aria - haspopup = "true"
onClick = { ( ) = > setDropdownOpen ( true ) }
>
< img className = "w-8 h-8 rounded-full" src = { user ? . avatar } alt = "" / >
< img
className = "w-8 h-8 rounded-full sm:w-10 sm:h-10"
src = { user ? . avatar }
alt = ""
/ >
< / button >
< / div >
< Transition
@ -98,9 +98,9 @@ const RequestCard: React.FC<RequestCardProps> = ({ request, onTitleData }) => {
return (
< div
className = "relative flex p-4 text-gray-400 bg-gray- 800 bg-center bg-cover rounded-xl w-72 sm:w-96 "
className = "relative flex p-4 text-gray-400 bg-gray- 700 bg-center bg-cover shadow rounded-xl w-72 sm:w-96 ring-1 ring-gray-700 "
style = { {
backgroundImage : ` linear-gradient(1 80deg, rgba(17, 24, 39, 0.47) 0%, rgba(17, 24, 39, 1) 100 %), url(//image.tmdb.org/t/p/w1920_and_h800_multi_faces/${ title . backdropPath } ) ` ,
backgroundImage : ` linear-gradient(1 35deg, rgba(17, 24, 39, 0.47) 0%, rgba(17, 24, 39, 1) 75 %), url(//image.tmdb.org/t/p/w1920_and_h800_multi_faces/${ title . backdropPath } ) ` ,
} }
>
< div className = "flex flex-col flex-1 min-w-0 pr-4" >