From 356f604323acbda999fd8d0e44c0972f9acde2a0 Mon Sep 17 00:00:00 2001 From: whysman Date: Sun, 23 Mar 2025 01:00:07 -0400 Subject: [PATCH] Mods to Broken --- components/Broken.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/components/Broken.tsx b/components/Broken.tsx index 2c23cfe..ed4f419 100644 --- a/components/Broken.tsx +++ b/components/Broken.tsx @@ -1,4 +1,5 @@ -import {Avatar, Dialog, Portal, useTheme} from "react-native-paper"; +import {Dialog, useTheme} from "react-native-paper"; +import { Image } from "react-native"; import React from "react"; const theme = useTheme(); @@ -6,11 +7,12 @@ const theme = useTheme(); const Broken = () => { return ( - The Internet is a Series of Tubes - The Internet is a Series of Tubes + + And these aren't connected. {"\n"} (We're still working on this part.) ); };