[Jellyseerr] "Currently Streaming On" misaligned text

fixes #392
This commit is contained in:
herrrta
2025-01-08 08:04:48 -05:00
parent 05dc61d17d
commit dcd458bd3d

View File

@@ -29,8 +29,8 @@ const Facts: React.FC<
> = ({ title, facts, ...props }) =>
facts &&
facts?.length > 0 && (
<View className="flex flex-row justify-between py-2" {...props}>
<Text className="font-bold">{title}</Text>
<View className="flex flex-col justify-between py-2" {...props}>
<Text className="font-bold text-start">{title}</Text>
<View className="flex flex-col items-end">
{facts.map((f, idx) =>