diff --git a/src/app/auth/components/user.tsx b/src/app/auth/components/user.tsx index b95b52f3..8847d285 100644 --- a/src/app/auth/components/user.tsx +++ b/src/app/auth/components/user.tsx @@ -22,7 +22,8 @@ export function User({ pubkey }: { pubkey: string }) {
{pubkey} avatar diff --git a/src/app/channel/components/createModal.tsx b/src/app/channel/components/createModal.tsx index 7cb2e9c5..f0b36e67 100644 --- a/src/app/channel/components/createModal.tsx +++ b/src/app/channel/components/createModal.tsx @@ -158,6 +158,7 @@ export function ChannelCreateModal() {
channel picture diff --git a/src/app/channel/components/member.tsx b/src/app/channel/components/member.tsx index 615ff8f9..e58aeebe 100644 --- a/src/app/channel/components/member.tsx +++ b/src/app/channel/components/member.tsx @@ -12,7 +12,8 @@ export function Member({ pubkey }: { pubkey: string }) { ) : ( {pubkey} )} diff --git a/src/app/channel/components/messages/userMute.tsx b/src/app/channel/components/messages/userMute.tsx index ec3c6b00..5e60b7ce 100644 --- a/src/app/channel/components/messages/userMute.tsx +++ b/src/app/channel/components/messages/userMute.tsx @@ -24,7 +24,8 @@ export function ChannelMessageUserMute({ <>
{pubkey} diff --git a/src/app/channel/components/messages/userReply.tsx b/src/app/channel/components/messages/userReply.tsx index b460b852..23017818 100644 --- a/src/app/channel/components/messages/userReply.tsx +++ b/src/app/channel/components/messages/userReply.tsx @@ -17,7 +17,8 @@ export function UserReply({ pubkey }: { pubkey: string }) { <>
{pubkey} diff --git a/src/app/channel/components/metadata.tsx b/src/app/channel/components/metadata.tsx index c08837f1..19bc4915 100644 --- a/src/app/channel/components/metadata.tsx +++ b/src/app/channel/components/metadata.tsx @@ -19,7 +19,8 @@ export function ChannelMetadata({ id }: { id: string }) {
{id} diff --git a/src/app/channel/components/mutedItem.tsx b/src/app/channel/components/mutedItem.tsx index 9c841a68..2fc9d574 100644 --- a/src/app/channel/components/mutedItem.tsx +++ b/src/app/channel/components/mutedItem.tsx @@ -41,7 +41,8 @@ export function MutedItem({ data }: { data: any }) {
{data.content} diff --git a/src/app/chat/components/item.tsx b/src/app/chat/components/item.tsx index 1ea8be0c..1a9b3a54 100644 --- a/src/app/chat/components/item.tsx +++ b/src/app/chat/components/item.tsx @@ -35,7 +35,8 @@ export function ChatsListItem({ data }: { data: any }) { >
{data.sender_pubkey} diff --git a/src/app/chat/components/self.tsx b/src/app/chat/components/self.tsx index 8ba1e049..b90bb8f1 100644 --- a/src/app/chat/components/self.tsx +++ b/src/app/chat/components/self.tsx @@ -32,7 +32,8 @@ export function ChatsListSelfItem({ data }: { data: any }) { >
{data.pubkey} diff --git a/src/app/chat/components/sidebar.tsx b/src/app/chat/components/sidebar.tsx index 3b9c1cfc..ab2b830b 100644 --- a/src/app/chat/components/sidebar.tsx +++ b/src/app/chat/components/sidebar.tsx @@ -18,7 +18,8 @@ export function ChatSidebar({ pubkey }: { pubkey: string }) {
{pubkey} diff --git a/src/app/space/components/addImage.tsx b/src/app/space/components/addImage.tsx index c3440558..7438c4ee 100644 --- a/src/app/space/components/addImage.tsx +++ b/src/app/space/components/addImage.tsx @@ -4,6 +4,7 @@ import { CancelIcon } from "@shared/icons"; import { Image } from "@shared/image"; import { RelayContext } from "@shared/relayProvider"; import { useActiveAccount } from "@stores/accounts"; +import { DEFAULT_AVATAR } from "@stores/constants"; import { open } from "@tauri-apps/api/dialog"; import { Body, fetch } from "@tauri-apps/api/http"; import { createBlobFromFile } from "@utils/createBlobFromFile"; @@ -206,6 +207,7 @@ export function AddImageBlock({ parentState }: { parentState: any }) {
content diff --git a/src/app/space/components/blocks/image.tsx b/src/app/space/components/blocks/image.tsx index 899df086..3fa3757e 100644 --- a/src/app/space/components/blocks/image.tsx +++ b/src/app/space/components/blocks/image.tsx @@ -1,7 +1,7 @@ -import { CancelIcon } from "@shared/icons"; import { Image } from "@shared/image"; import { TitleBar } from "@shared/titleBar"; import { useActiveAccount } from "@stores/accounts"; +import { DEFAULT_AVATAR } from "@stores/constants"; export function ImageBlock({ params }: { params: any }) { const removeBlock = useActiveAccount((state: any) => state.removeBlock); @@ -16,6 +16,7 @@ export function ImageBlock({ params }: { params: any }) {
{params.title} diff --git a/src/app/trending/components/profile.tsx b/src/app/trending/components/profile.tsx index cff75bd7..b223c636 100644 --- a/src/app/trending/components/profile.tsx +++ b/src/app/trending/components/profile.tsx @@ -27,7 +27,8 @@ export function Profile({ data }: { data: any }) {
diff --git a/src/app/user/pages/index.page.tsx b/src/app/user/pages/index.page.tsx index d7e70ed1..cd0f3601 100644 --- a/src/app/user/pages/index.page.tsx +++ b/src/app/user/pages/index.page.tsx @@ -88,7 +88,8 @@ export function Page() { />
{"banner"} @@ -96,7 +97,8 @@ export function Page() {
{pubkey} diff --git a/src/shared/accounts/active.tsx b/src/shared/accounts/active.tsx index bdaa79e0..6f11c1f1 100644 --- a/src/shared/accounts/active.tsx +++ b/src/shared/accounts/active.tsx @@ -67,7 +67,8 @@ export function ActiveAccount({ data }: { data: any }) { return ( +
+ +
+ - - + + Settings + + + Logout + +
); } diff --git a/src/shared/notes/contents/kind1063.tsx b/src/shared/notes/contents/kind1063.tsx index f30a3b0d..08e4a1d4 100644 --- a/src/shared/notes/contents/kind1063.tsx +++ b/src/shared/notes/contents/kind1063.tsx @@ -13,6 +13,7 @@ export function Kind1063({ metadata }: { metadata: NDKTag[] }) { {isImage(url) && ( image diff --git a/src/shared/notes/preview/image.tsx b/src/shared/notes/preview/image.tsx index 74ef90e0..24752a55 100644 --- a/src/shared/notes/preview/image.tsx +++ b/src/shared/notes/preview/image.tsx @@ -8,6 +8,7 @@ export function ImagePreview({ urls }: { urls: string[] }) {
image diff --git a/src/shared/notes/preview/link.tsx b/src/shared/notes/preview/link.tsx index 7f1776e6..358cf8c9 100644 --- a/src/shared/notes/preview/link.tsx +++ b/src/shared/notes/preview/link.tsx @@ -27,9 +27,9 @@ export function LinkPreview({ urls }: { urls: string[] }) { {data["og:image"] && ( {urls[0]} )}
diff --git a/src/shared/notes/replies/form.tsx b/src/shared/notes/replies/form.tsx index daf8e060..5719e87e 100644 --- a/src/shared/notes/replies/form.tsx +++ b/src/shared/notes/replies/form.tsx @@ -50,7 +50,8 @@ export function NoteReplyForm({ id }: { id: string }) {
{account.npub} diff --git a/src/shared/notes/repost.tsx b/src/shared/notes/repost.tsx index 1ba2790d..6ed29b79 100644 --- a/src/shared/notes/repost.tsx +++ b/src/shared/notes/repost.tsx @@ -19,7 +19,7 @@ export function Repost({ const kind1063 = data?.kind === 1063 ? data.tags : null; return ( -
+
{data ? ( <> diff --git a/src/shared/user.tsx b/src/shared/user.tsx index 171ef8a9..30e37739 100644 --- a/src/shared/user.tsx +++ b/src/shared/user.tsx @@ -31,7 +31,8 @@ export function User({ className={`${avatarWidth} ${avatarHeight} shrink-0 overflow-hidden`} > {pubkey}
{pubkey}