diff --git a/src/components/Selector/index.tsx b/src/components/Selector/index.tsx index a477f436..c49e486f 100644 --- a/src/components/Selector/index.tsx +++ b/src/components/Selector/index.tsx @@ -342,7 +342,7 @@ export const WatchProviderSelector = ({ {isLoading ? ( ) : ( - <> +
{initialProviders.map((provider) => { const isActive = activeProvider.includes(provider.id); @@ -385,7 +385,7 @@ export const WatchProviderSelector = ({ })}
{showMore && otherProviders.length > 0 && ( -
+
{otherProviders.map((provider) => { const isActive = activeProvider.includes(provider.id); return ( @@ -429,7 +429,7 @@ export const WatchProviderSelector = ({ )} {otherProviders.length > 0 && ( )} - +
)} );