+
+
+
@@ -104,6 +106,9 @@ export function Navigation() {
)}
+
+
+
);
}
diff --git a/src/shared/networkStatusIndicator.tsx b/src/shared/networkStatusIndicator.tsx
index fdb56fb0..2b538bd2 100644
--- a/src/shared/networkStatusIndicator.tsx
+++ b/src/shared/networkStatusIndicator.tsx
@@ -4,22 +4,10 @@ export function NetworkStatusIndicator() {
const isOnline = useNetworkStatus();
return (
-
-
-
-
-
-
- {isOnline ? "Online" : "Offline"}
-
-
+
);
}
diff --git a/src/shared/notes/mentions/user.tsx b/src/shared/notes/mentions/user.tsx
index 39875ea6..a8752afa 100644
--- a/src/shared/notes/mentions/user.tsx
+++ b/src/shared/notes/mentions/user.tsx
@@ -7,7 +7,7 @@ export function MentionUser({ pubkey }: { pubkey: string }) {
return (
@{user?.name || user?.displayName || shortenKey(pubkey)}
diff --git a/src/shared/notes/preview/link.tsx b/src/shared/notes/preview/link.tsx
index 87532ab6..7f1776e6 100644
--- a/src/shared/notes/preview/link.tsx
+++ b/src/shared/notes/preview/link.tsx
@@ -29,6 +29,7 @@ export function LinkPreview({ urls }: { urls: string[] }) {
src={data["og:image"]}
alt={urls[0]}
className="w-full h-44 object-cover rounded-t-lg bg-white"
+ fallback="https://void.cat/d/XTmrMkpid8DGLjv1AzdvcW"
/>
)}
diff --git a/src/shared/user.tsx b/src/shared/user.tsx
index f22e1b62..171ef8a9 100644
--- a/src/shared/user.tsx
+++ b/src/shared/user.tsx
@@ -73,6 +73,7 @@ export function User({
src={user?.image || DEFAULT_AVATAR}
alt={pubkey}
className="h-11 w-11 shrink-0 rounded-lg object-cover"
+ fallback={DEFAULT_AVATAR}
/>