diff --git a/src/app/channel/components/list.tsx b/src/app/channel/components/list.tsx index da5dd53c..5ee7e047 100644 --- a/src/app/channel/components/list.tsx +++ b/src/app/channel/components/list.tsx @@ -12,7 +12,7 @@ export function ChannelsList() { }, [fetchChannels]); return ( -
+
{!channels ? ( <>
diff --git a/src/app/chat/components/list.tsx b/src/app/chat/components/list.tsx index 367364fe..063d37cf 100644 --- a/src/app/chat/components/list.tsx +++ b/src/app/chat/components/list.tsx @@ -17,29 +17,29 @@ export function ChatsList() { if (!account) return ( -
+
-
+
-
+
); return ( -
+
{!chats ? ( <>
-
+
-
+
diff --git a/src/app/space/components/blocks/following.tsx b/src/app/space/components/blocks/following.tsx index eb5bb51b..63b2099a 100644 --- a/src/app/space/components/blocks/following.tsx +++ b/src/app/space/components/blocks/following.tsx @@ -101,14 +101,7 @@ export function FollowingBlock({ block }: { block: number }) { className="scrollbar-hide flex w-full h-full flex-col justify-between gap-1.5 pt-1.5 pb-20 overflow-y-auto" style={{ contain: "strict" }} > - {isLoading && ( -
-
- -
-
- )} - {!data ? ( + {!data || isLoading ? (
diff --git a/src/shared/layout.tsx b/src/shared/layout.tsx index c2d1c687..8054d208 100644 --- a/src/shared/layout.tsx +++ b/src/shared/layout.tsx @@ -13,11 +13,7 @@ export function DefaultLayout({ children }: { children: React.ReactNode }) { ); return ( -
+
diff --git a/src/shared/navigation.tsx b/src/shared/navigation.tsx index 09040bfc..39ed8528 100644 --- a/src/shared/navigation.tsx +++ b/src/shared/navigation.tsx @@ -26,7 +26,7 @@ export function Navigation({ reverse }: { reverse?: boolean }) { Feeds
-
+
-
+ + {domain.hostname} +
) : ( diff --git a/src/shared/notes/preview/video.tsx b/src/shared/notes/preview/video.tsx index 758c470b..73ff8341 100644 --- a/src/shared/notes/preview/video.tsx +++ b/src/shared/notes/preview/video.tsx @@ -7,9 +7,11 @@ export function VideoPreview({ urls }: { urls: string[] }) { onKeyDown={(e) => e.stopPropagation()} className="relative mt-3 max-w-[420px] flex w-full flex-col overflow-hidden rounded-lg bg-zinc-950" > - - - + {urls.map((url: string) => ( + + + + ))}
); }