diff --git a/app/(tabs)/about.tsx b/app/(tabs)/about.tsx index edc0b2a..123b99f 100644 --- a/app/(tabs)/about.tsx +++ b/app/(tabs)/about.tsx @@ -5,7 +5,9 @@ import * as Linking from "expo-linking"; export default function AboutPage() { return ( - About + + About + - {title} - {description} + {title} + {description} ); diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 6730dea..60d0484 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -29,7 +29,8 @@ export default function HomeScreen() { const images: ImageAsset[] = await res.json(); setImages(images); setIsLoading(false); - } catch { + } catch (err) { + console.log(err); Alert.alert( "Unable to fetch wallpaper", "Check your internet connection. Otherwise, it's probably our fault.", @@ -50,7 +51,7 @@ export default function HomeScreen() { data={images} numColumns={2} ListHeaderComponent={() => ( - + Wallpapers )}