Compare commits
	
		
			No commits in common. "116146733474ea09f9e2ddb1c8e319d91ecb4f54" and "d68eee9bec6687cb89eb1d7818883ca9c1988cc1" have entirely different histories.
		
	
	
		
			1161467334
			...
			d68eee9bec
		
	
		| 
						 | 
				
			
			@ -32,7 +32,7 @@ export function Sidebar({ movie, similarMoviesAvailable, watchProviders, config,
 | 
			
		|||
            apectRatio: "2 / 3"
 | 
			
		||||
          }} />
 | 
			
		||||
        </a>
 | 
			
		||||
        : <Popcorn height="100%" size="60%" />
 | 
			
		||||
        : <Popcorn height="100%" size="80%" />
 | 
			
		||||
      }
 | 
			
		||||
      {similarMoviesAvailable ? "" : "No hay data suficiente para darte pelílculas relacionadas."}
 | 
			
		||||
      <div className="h-36 sm:h-72 w-8/12 sm:w-full overflow-y-scroll overflow-x-hidden sm:mt-4 p-2 sm:p-4 text-sm sm:text-base flex justify-center items-center border-2 border-slate-800 rounded-lg ">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -64,7 +64,7 @@ interface ProviderIconsProps extends React.ComponentPropsWithRef<"div"> {
 | 
			
		|||
function ProviderIcons({ providerList, link }: ProviderIconsProps) {
 | 
			
		||||
  if (!providerList) { return "" }
 | 
			
		||||
  const list = providerList.map((e: any, i: number) => {
 | 
			
		||||
    return <div className="w-6 aspect-square" key={e.link}>
 | 
			
		||||
    return <div className="w-6 aspect-square">
 | 
			
		||||
      <a href={link}>
 | 
			
		||||
        <img src={tmdb.makeLogoPath(e.logo_path)} key={e.provider_id + "_" + i} /></a>
 | 
			
		||||
    </div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue