diff --git a/app/(auth)/(tabs)/(home)/settings.tsx b/app/(auth)/(tabs)/(home)/settings.tsx index 28b9033c..6c5cc32a 100644 --- a/app/(auth)/(tabs)/(home)/settings.tsx +++ b/app/(auth)/(tabs)/(home)/settings.tsx @@ -143,7 +143,9 @@ export default function settings() { > {log.level} - {log.message} + + {log.message} + ))} {logs?.length === 0 && ( diff --git a/bun.lockb b/bun.lockb index bb04f687..3a07d923 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/components/ListItem.tsx b/components/ListItem.tsx index 3dd3b799..755f79ed 100644 --- a/components/ListItem.tsx +++ b/components/ListItem.tsx @@ -21,10 +21,10 @@ export const ListItem: React.FC> = ({ className="flex flex-row items-center justify-between bg-neutral-900 p-4" {...props} > - + {title} {subTitle && ( - + {subTitle} )} diff --git a/components/common/Text.tsx b/components/common/Text.tsx index bdede438..ef7a6491 100644 --- a/components/common/Text.tsx +++ b/components/common/Text.tsx @@ -1,11 +1,16 @@ import React from "react"; import { TextProps } from "react-native"; -import { Text as DefaultText } from "react-native"; -export function Text(props: TextProps) { +import { UITextView } from "react-native-uitextview"; + +export function Text( + props: TextProps & { + uiTextView?: boolean; + } +) { const { style, ...otherProps } = props; return ( - = ({ item, ...props }) => { return ( - + {item?.Name} - {item?.ProductionYear} + {item?.ProductionYear} ); }; diff --git a/components/series/EpisodeTitleHeader.tsx b/components/series/EpisodeTitleHeader.tsx index dcf83860..5ca85ee7 100644 --- a/components/series/EpisodeTitleHeader.tsx +++ b/components/series/EpisodeTitleHeader.tsx @@ -12,7 +12,7 @@ export const EpisodeTitleHeader: React.FC = ({ item, ...props }) => { return ( - + {item?.Name} diff --git a/package.json b/package.json index 619a8299..ed37651a 100644 --- a/package.json +++ b/package.json @@ -82,6 +82,7 @@ "react-native-screens": "3.31.1", "react-native-svg": "15.2.0", "react-native-tab-view": "^3.5.2", + "react-native-uitextview": "^1.4.0", "react-native-url-polyfill": "^2.0.0", "react-native-uuid": "^2.0.2", "react-native-video": "^6.6.4",