Are you sure!
@@ -123,14 +123,14 @@ export default function MessageMuteButton({ pubkey }: { pubkey: string }) {
Cancel
muteUser()}
- className="inline-flex h-9 items-center justify-center rounded-md bg-red-500 px-2 text-sm font-medium text-zinc-100 hover:bg-red-600"
+ className="inline-flex h-9 items-center justify-center rounded-md bg-red-500 px-2 text-base font-medium text-white hover:bg-red-600"
>
Confirm
diff --git a/src/app/channel/components/messages/replyButton.tsx b/src/app/channel/components/messages/replyButton.tsx
index 48631145..cdf72cdd 100644
--- a/src/app/channel/components/messages/replyButton.tsx
+++ b/src/app/channel/components/messages/replyButton.tsx
@@ -24,7 +24,7 @@ export default function MessageReplyButton({
onClick={() => createReply()}
className="inline-flex h-7 w-7 items-center justify-center rounded hover:bg-zinc-800"
>
-
+
);
diff --git a/src/app/channel/components/messages/user.tsx b/src/app/channel/components/messages/user.tsx
index f2da2455..e9dab5a9 100644
--- a/src/app/channel/components/messages/user.tsx
+++ b/src/app/channel/components/messages/user.tsx
@@ -22,7 +22,7 @@ export default function ChannelMessageUser({
<>
-
@@ -39,8 +39,8 @@ export default function ChannelMessageUser({
/>
-
-
+
+
{user?.display_name || user?.name || shortenKey(pubkey)}
·
diff --git a/src/app/channel/components/messages/userReply.tsx b/src/app/channel/components/messages/userReply.tsx
index b94ea374..afbee898 100644
--- a/src/app/channel/components/messages/userReply.tsx
+++ b/src/app/channel/components/messages/userReply.tsx
@@ -13,7 +13,7 @@ export default function UserReply({ pubkey }: { pubkey: string }) {
{isError || isLoading ? (
<>
-
+
>
) : (
<>
@@ -26,7 +26,7 @@ export default function UserReply({ pubkey }: { pubkey: string }) {
className="h-7 w-7 rounded object-cover"
/>
-
+
Replying to {user?.name || shortenKey(pubkey)}
>
diff --git a/src/app/channel/components/metadata.tsx b/src/app/channel/components/metadata.tsx
index 0ad9ee55..dc87b7d2 100644
--- a/src/app/channel/components/metadata.tsx
+++ b/src/app/channel/components/metadata.tsx
@@ -33,14 +33,14 @@ export default function ChannelMetadata({
-
+
{metadata?.name}
copyNoteID()}>
-
+
{metadata?.about || (noteID && `${noteID.substring(0, 24)}...`)}
diff --git a/src/app/channel/components/mutedItem.tsx b/src/app/channel/components/mutedItem.tsx
index 3e8b2fda..4530dcd0 100644
--- a/src/app/channel/components/mutedItem.tsx
+++ b/src/app/channel/components/mutedItem.tsx
@@ -50,10 +50,10 @@ export default function MutedItem({ data }: { data: any }) {
/>
-
+
{user?.display_name || user?.name || "Pleb"}
-
+
{shortenKey(data.content)}
@@ -63,7 +63,7 @@ export default function MutedItem({ data }: { data: any }) {
unmute()}
- className="inline-flex h-6 w-min items-center justify-center rounded px-1.5 text-xs font-medium leading-none text-zinc-400 hover:bg-zinc-800 hover:text-fuchsia-500"
+ className="inline-flex h-6 w-min items-center justify-center rounded px-1.5 text-base font-medium leading-none text-zinc-400 hover:bg-zinc-800 hover:text-fuchsia-500"
>
Unmute
@@ -71,7 +71,7 @@ export default function MutedItem({ data }: { data: any }) {
mute()}
- className="inline-flex h-6 w-min items-center justify-center rounded px-1.5 text-xs font-medium leading-none text-zinc-400 hover:bg-zinc-800 hover:text-fuchsia-500"
+ className="inline-flex h-6 w-min items-center justify-center rounded px-1.5 text-base font-medium leading-none text-zinc-400 hover:bg-zinc-800 hover:text-fuchsia-500"
>
Mute
diff --git a/src/app/channel/components/updateModal.tsx b/src/app/channel/components/updateModal.tsx
index 13132607..b86945cd 100644
--- a/src/app/channel/components/updateModal.tsx
+++ b/src/app/channel/components/updateModal.tsx
@@ -89,7 +89,7 @@ export default function ChannelUpdateModal({ id }: { id: string }) {
@@ -121,7 +121,7 @@ export default function ChannelUpdateModal({ id }: { id: string }) {
Update channel
@@ -152,10 +152,10 @@ export default function ChannelUpdateModal({ id }: { id: string }) {
type={"hidden"}
{...register("picture")}
value={image}
- className="relative h-10 w-full rounded-lg border border-black/5 px-3 py-2 shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
+ className="relative h-10 w-full rounded-lg border border-black/5 px-3 py-2 shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-white dark:shadow-black/10 dark:placeholder:text-zinc-500"
/>
-
+
Picture
@@ -170,7 +170,7 @@ export default function ChannelUpdateModal({ id }: { id: string }) {
-
+
Channel name *
@@ -181,35 +181,35 @@ export default function ChannelUpdateModal({ id }: { id: string }) {
minLength: 4,
})}
spellCheck={false}
- className="relative h-10 w-full rounded-lg border border-black/5 px-3 py-2 shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
+ className="relative h-10 w-full rounded-lg border border-black/5 px-3 py-2 shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-white dark:shadow-black/10 dark:placeholder:text-zinc-500"
/>
-
+
Make Private
-
-
+
Private channels can only be viewed by member
diff --git a/src/app/chat/components/item.tsx b/src/app/chat/components/item.tsx
index 129e0480..81881aee 100644
--- a/src/app/chat/components/item.tsx
+++ b/src/app/chat/components/item.tsx
@@ -23,7 +23,7 @@ export default function ChatsListItem({ pubkey }: { pubkey: string }) {
) : (
@@ -32,7 +32,7 @@ export default function ChatsListItem({ pubkey }: { pubkey: string }) {
className={twMerge(
"group inline-flex h-8 items-center gap-2.5 rounded-md px-2.5 hover:bg-zinc-900",
pagePubkey === pubkey
- ? "dark:bg-zinc-900 dark:text-zinc-100 hover:dark:bg-zinc-800"
+ ? "dark:bg-zinc-900 dark:text-white hover:dark:bg-zinc-800"
: "",
)}
>
@@ -44,8 +44,8 @@ export default function ChatsListItem({ pubkey }: { pubkey: string }) {
/>
-
- {user.display_name || user.name || shortenKey(pubkey)}
+
+ {user.nip05 || user.name || shortenKey(pubkey)}
diff --git a/src/app/chat/components/messages/form.tsx b/src/app/chat/components/messages/form.tsx
index e3fd1a69..0052b5b8 100644
--- a/src/app/chat/components/messages/form.tsx
+++ b/src/app/chat/components/messages/form.tsx
@@ -66,7 +66,7 @@ export default function ChatMessageForm({
onKeyDown={handleEnterPress}
spellCheck={false}
placeholder="Message"
- className="relative h-24 w-full resize-none rounded-lg border border-black/5 px-3.5 py-3 text-sm shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
+ className="relative h-24 w-full resize-none rounded-lg border border-black/5 px-3.5 py-3 text-base shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-white dark:shadow-black/10 dark:placeholder:text-zinc-500"
/>
@@ -80,7 +80,7 @@ export default function ChatMessageForm({
type="button"
onClick={() => submitEvent()}
disabled={value.length === 0 ? true : false}
- className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-sm font-medium shadow-button hover:bg-fuchsia-600 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
+ className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-base font-medium shadow-button hover:bg-fuchsia-600 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
>
Send
diff --git a/src/app/chat/components/messages/item.tsx b/src/app/chat/components/messages/item.tsx
index 8c8e883b..84a1d458 100644
--- a/src/app/chat/components/messages/item.tsx
+++ b/src/app/chat/components/messages/item.tsx
@@ -29,7 +29,7 @@ export const ChatMessageItem = memo(function MessageListItem({
-
+
{content.parsed}
{Array.isArray(content.images) && content.images.length ? (
diff --git a/src/app/chat/components/messages/user.tsx b/src/app/chat/components/messages/user.tsx
index 02fbce2b..be6c2480 100644
--- a/src/app/chat/components/messages/user.tsx
+++ b/src/app/chat/components/messages/user.tsx
@@ -22,7 +22,7 @@ export default function ChatMessageUser({
<>
-
@@ -39,8 +39,8 @@ export default function ChatMessageUser({
/>
-
-
+
+
{user?.display_name || user?.name || shortenKey(pubkey)}
·
diff --git a/src/app/chat/components/self.tsx b/src/app/chat/components/self.tsx
index d361bf30..70faf836 100644
--- a/src/app/chat/components/self.tsx
+++ b/src/app/chat/components/self.tsx
@@ -24,7 +24,7 @@ export default function ChatsListSelfItem() {
) : (
@@ -33,7 +33,7 @@ export default function ChatsListSelfItem() {
className={twMerge(
"inline-flex h-8 items-center gap-2.5 rounded-md px-2.5 hover:bg-zinc-900",
pagePubkey === account.pubkey
- ? "dark:bg-zinc-900 dark:text-zinc-100 hover:dark:bg-zinc-800"
+ ? "dark:bg-zinc-900 dark:text-white hover:dark:bg-zinc-800"
: "",
)}
>
@@ -45,11 +45,9 @@ export default function ChatsListSelfItem() {
/>
-
- {profile?.display_name ||
- profile?.name ||
- shortenKey(account.pubkey)}{" "}
- (you)
+
+ {profile?.nip05 || profile?.name || shortenKey(account.pubkey)}{" "}
+ (you)
diff --git a/src/app/index/pages/index.page.tsx b/src/app/index/pages/index.page.tsx
index 0a277f72..0c2f6594 100644
--- a/src/app/index/pages/index.page.tsx
+++ b/src/app/index/pages/index.page.tsx
@@ -21,6 +21,6 @@ export function Page() {
}
return (
-
+
);
}
diff --git a/src/app/inital-data/pages/index.page.tsx b/src/app/inital-data/pages/index.page.tsx
index bbc8e28e..8942758f 100644
--- a/src/app/inital-data/pages/index.page.tsx
+++ b/src/app/inital-data/pages/index.page.tsx
@@ -220,7 +220,7 @@ export function Page() {
-
+
Here's an interesting fact:
diff --git a/src/app/note/components/metadata/like.tsx b/src/app/note/components/metadata/like.tsx
index 36e46a48..2b073d97 100644
--- a/src/app/note/components/metadata/like.tsx
+++ b/src/app/note/components/metadata/like.tsx
@@ -60,7 +60,7 @@ export default function NoteLike({
height={16}
className="text-zinc-400 group-hover:text-rose-400"
/>
-
+
{count}
diff --git a/src/app/note/components/metadata/reply.tsx b/src/app/note/components/metadata/reply.tsx
index 1ac0281f..1d272ce9 100644
--- a/src/app/note/components/metadata/reply.tsx
+++ b/src/app/note/components/metadata/reply.tsx
@@ -72,7 +72,7 @@ export default function NoteReply({
height={16}
className="text-zinc-400 group-hover:text-green-400"
/>
-
+
{compactNumber.format(count)}
@@ -118,7 +118,7 @@ export default function NoteReply({
name="content"
onChange={(e) => setValue(e.target.value)}
placeholder="Send your comment"
- className="relative h-24 w-full resize-none rounded-md border border-black/5 px-3.5 py-3 text-sm shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
+ className="relative h-24 w-full resize-none rounded-md border border-black/5 px-3.5 py-3 text-base shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-white dark:shadow-black/10 dark:placeholder:text-zinc-500"
spellCheck={false}
/>
@@ -132,7 +132,7 @@ export default function NoteReply({
type="button"
onClick={() => submitEvent()}
disabled={value.length === 0 ? true : false}
- className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-sm font-medium shadow-md shadow-fuchsia-900/50 hover:bg-fuchsia-600"
+ className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-base font-medium shadow-md shadow-fuchsia-900/50 hover:bg-fuchsia-600"
>
Send
diff --git a/src/app/note/components/metadata/repost.tsx b/src/app/note/components/metadata/repost.tsx
index b6e04294..83ce75a1 100644
--- a/src/app/note/components/metadata/repost.tsx
+++ b/src/app/note/components/metadata/repost.tsx
@@ -61,7 +61,7 @@ export default function NoteRepost({
height={16}
className="text-zinc-400 group-hover:text-blue-400"
/>
-
+
{compactNumber.format(count)}
diff --git a/src/app/note/components/metadata/zap.tsx b/src/app/note/components/metadata/zap.tsx
index c4bd5f58..941a0f39 100644
--- a/src/app/note/components/metadata/zap.tsx
+++ b/src/app/note/components/metadata/zap.tsx
@@ -16,7 +16,7 @@ export default function NoteZap({ zaps }: { zaps: number }) {
height={16}
className="text-zinc-400 group-hover:text-orange-400"
/>
-
+
{compactNumber.format(count)} sats
diff --git a/src/app/note/components/replies/form.tsx b/src/app/note/components/replies/form.tsx
index 861488a7..8985cd4a 100644
--- a/src/app/note/components/replies/form.tsx
+++ b/src/app/note/components/replies/form.tsx
@@ -54,7 +54,7 @@ export default function NoteReplyForm({ id }: { id: string }) {
name="content"
onChange={(e) => setValue(e.target.value)}
placeholder="Reply to this thread..."
- className="relative h-24 w-full resize-none rounded-md border border-black/5 px-3.5 py-3 text-sm shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-zinc-200 dark:shadow-black/10 dark:placeholder:text-zinc-500"
+ className="relative h-24 w-full resize-none rounded-md border border-black/5 px-3.5 py-3 text-base shadow-input shadow-black/5 !outline-none placeholder:text-zinc-400 dark:bg-zinc-800 dark:text-white dark:shadow-black/10 dark:placeholder:text-zinc-500"
spellCheck={false}
/>
@@ -66,7 +66,7 @@ export default function NoteReplyForm({ id }: { id: string }) {
type="button"
onClick={() => submitEvent()}
disabled={value.length === 0 ? true : false}
- className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-sm font-medium shadow-button hover:bg-fuchsia-600 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
+ className="inline-flex h-8 w-16 items-center justify-center rounded-md bg-fuchsia-500 px-4 text-base font-medium shadow-button hover:bg-fuchsia-600 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
>
Reply
diff --git a/src/app/note/components/replies/list.tsx b/src/app/note/components/replies/list.tsx
index ec51db9e..7d549fd4 100644
--- a/src/app/note/components/replies/list.tsx
+++ b/src/app/note/components/replies/list.tsx
@@ -51,7 +51,7 @@ export default function RepliesList({ id }: { id: string }) {
-
+
diff --git a/src/app/note/components/user/default.tsx b/src/app/note/components/user/default.tsx
index 07108916..f69a2011 100644
--- a/src/app/note/components/user/default.tsx
+++ b/src/app/note/components/user/default.tsx
@@ -31,12 +31,12 @@ export function NoteDefaultUser({
-
+
{user?.display_name || user?.name || (
)}
-
+
{user?.nip05 || shortenKey(pubkey)}
•
{dayjs().to(dayjs.unix(time), true)}
@@ -68,17 +68,17 @@ export function NoteDefaultUser({
/>
-
+
{user?.display_name || user?.name || (
)}
-
+
{user?.nip05 || shortenKey(pubkey)}
@@ -87,13 +87,13 @@ export function NoteDefaultUser({
View full profile
Message
diff --git a/src/app/note/components/user/reply.tsx b/src/app/note/components/user/reply.tsx
index 5fb4ea03..75ff1931 100644
--- a/src/app/note/components/user/reply.tsx
+++ b/src/app/note/components/user/reply.tsx
@@ -28,8 +28,8 @@ export default function NoteReplyUser({
/>
-
-
+
+
{user?.display_name || user?.name || shortenKey(pubkey)}
·
diff --git a/src/app/note/components/user/repost.tsx b/src/app/note/components/user/repost.tsx
index a7ba8cce..cdbab9c7 100644
--- a/src/app/note/components/user/repost.tsx
+++ b/src/app/note/components/user/repost.tsx
@@ -29,7 +29,7 @@ export function NoteRepostUser({
className="h-9 w-9 rounded-md object-cover"
/>
-
+
{user?.display_name || user?.name || (
@@ -69,17 +69,17 @@ export function NoteRepostUser({
/>
-
+
{user?.display_name || user?.name || (
)}
-
+
{user?.nip05 || shortenKey(pubkey)}
@@ -88,13 +88,13 @@ export function NoteRepostUser({
View full profile
Message
diff --git a/src/app/note/pages/index.page.tsx b/src/app/note/pages/index.page.tsx
index a2dd2da4..6a464e3c 100644
--- a/src/app/note/pages/index.page.tsx
+++ b/src/app/note/pages/index.page.tsx
@@ -54,7 +54,7 @@ export function Page() {
-
diff --git a/src/app/space/components/header.tsx b/src/app/space/components/header.tsx
index 75797d2d..fe69ee44 100644
--- a/src/app/space/components/header.tsx
+++ b/src/app/space/components/header.tsx
@@ -7,7 +7,7 @@ export function Header() {
type="button"
className="from-zinc-90 inline-flex h-11 items-center overflow-hidden border-b border-fuchsia-500 hover:bg-zinc-900"
>
-
+
Following
diff --git a/src/app/space/components/views/createModal.tsx b/src/app/space/components/views/createModal.tsx
index b05660b4..2b621d67 100644
--- a/src/app/space/components/views/createModal.tsx
+++ b/src/app/space/components/views/createModal.tsx
@@ -22,7 +22,7 @@ export function CreateViewModal() {
onClick={openModal}
className="inline-flex h-11 items-center overflow-hidden border-b border-transparent hover:bg-zinc-900"
>
-
+
View
@@ -56,7 +56,7 @@ export function CreateViewModal() {
Create a view
@@ -72,7 +72,7 @@ export function CreateViewModal() {
/>
-
+
View is specific feature help you pin who you want to see
in your feed. You can add maximum 5 people in a view.
diff --git a/src/app/threads/components/author.tsx b/src/app/threads/components/author.tsx
index cb75c84d..78c352a6 100644
--- a/src/app/threads/components/author.tsx
+++ b/src/app/threads/components/author.tsx
@@ -23,12 +23,12 @@ export function ThreadAuthor({
-
+
{user?.display_name || user?.name || (
)}
-
+
{user?.nip05 || shortenKey(pubkey)}
•
{dayjs().to(dayjs.unix(time), true)}
diff --git a/src/app/threads/components/base.tsx b/src/app/threads/components/base.tsx
index 2845e0a9..9e5bfb61 100644
--- a/src/app/threads/components/base.tsx
+++ b/src/app/threads/components/base.tsx
@@ -17,7 +17,7 @@ export function ThreadBase({ event }: { event: any }) {
-
{title}
+
{title}
diff --git a/src/renderer/index.css b/src/renderer/index.css
index bc51e746..58d277a3 100644
--- a/src/renderer/index.css
+++ b/src/renderer/index.css
@@ -2,11 +2,8 @@
@tailwind components;
@tailwind utilities;
-/* Fixed webkit bug: https://bugs.webkit.org/show_bug.cgi?id=243601 */
-@supports (font: -apple-system-body) and (-webkit-appearance: none) {
- img[loading='lazy'] {
- clip-path: inset(0.6px);
- }
+html {
+ font-size: 14px;
}
a {
diff --git a/src/shared/avatarUploader.tsx b/src/shared/avatarUploader.tsx
index 2988b323..3aea2674 100644
--- a/src/shared/avatarUploader.tsx
+++ b/src/shared/avatarUploader.tsx
@@ -54,7 +54,7 @@ export function AvatarUploader({ valueState }: { valueState: any }) {
openFileDialog()}
type="button"
- className="inline-flex h-6 items-center justify-center rounded bg-zinc-900 px-3 text-xs font-medium text-zinc-200 ring-1 ring-zinc-800 hover:bg-zinc-700"
+ className="inline-flex h-6 items-center justify-center rounded bg-zinc-900 px-3 text-base font-medium text-white ring-1 ring-zinc-800 hover:bg-zinc-700"
>
{loading ? (
openModal()}
- className="inline-flex h-7 w-max items-center justify-center gap-1 rounded-md bg-fuchsia-500 px-2.5 text-xs font-medium text-zinc-200 shadow-button hover:bg-fuchsia-600 focus:outline-none"
+ className="inline-flex h-8 w-max items-center justify-center gap-1 rounded-md bg-fuchsia-500 px-2.5 text-sm font-medium text-white shadow-button hover:bg-fuchsia-600 focus:outline-none"
>
Compose
@@ -76,7 +76,7 @@ export function ComposerModal() {
className="text-zinc-500"
/>
-
+
New Post
diff --git a/src/shared/composer/types/post.tsx b/src/shared/composer/types/post.tsx
index e9f411c2..e962c865 100644
--- a/src/shared/composer/types/post.tsx
+++ b/src/shared/composer/types/post.tsx
@@ -48,9 +48,9 @@ const ImagePreview = ({
Transforms.removeNodes(editor, { at: path })}
- className="absolute right-2 top-2 inline-flex h-7 w-7 items-center justify-center gap-0.5 rounded bg-zinc-800 text-xs font-medium text-zinc-400 shadow-mini-button hover:bg-zinc-700"
+ className="absolute right-2 top-2 inline-flex h-7 w-7 items-center justify-center gap-0.5 rounded bg-zinc-800 text-base font-medium text-zinc-400 shadow-mini-button hover:bg-zinc-700"
>
-
+
@@ -130,7 +130,7 @@ export function Post({ pubkey, privkey }: { pubkey: string; privkey: string }) {
Post
diff --git a/src/shared/composer/user.tsx b/src/shared/composer/user.tsx
index fd64efbf..7e7b5cba 100644
--- a/src/shared/composer/user.tsx
+++ b/src/shared/composer/user.tsx
@@ -17,7 +17,7 @@ export function User({ data }: { data: any }) {
loading="auto"
/>
-
+
{metadata?.display_name || metadata?.name || (
)}
diff --git a/src/shared/eventCollector.tsx b/src/shared/eventCollector.tsx
index c7a38056..fd4c1c3b 100644
--- a/src/shared/eventCollector.tsx
+++ b/src/shared/eventCollector.tsx
@@ -136,7 +136,7 @@ export default function EventCollector() {
);
return (
-
+
);
diff --git a/src/shared/image.tsx b/src/shared/image.tsx
index c5919b41..77057860 100644
--- a/src/shared/image.tsx
+++ b/src/shared/image.tsx
@@ -8,7 +8,6 @@ export function Image(props) {
return (
@@ -61,16 +61,16 @@ export default function MultiAccounts() {
-
+
Lume
-
+
v{APP_VERSION}
diff --git a/src/shared/navigation.tsx b/src/shared/navigation.tsx
index 4794227c..b6864253 100644
--- a/src/shared/navigation.tsx
+++ b/src/shared/navigation.tsx
@@ -29,23 +29,23 @@ export default function Navigation() {
-
+
- Space
+ Space
-
+
- Threads
+ Threads
diff --git a/src/shared/networkStatusIndicator.tsx b/src/shared/networkStatusIndicator.tsx
index aa2f57e8..fdb56fb0 100644
--- a/src/shared/networkStatusIndicator.tsx
+++ b/src/shared/networkStatusIndicator.tsx
@@ -17,7 +17,7 @@ export function NetworkStatusIndicator() {
}`}
/>
-
+
{isOnline ? "Online" : "Offline"}
diff --git a/src/shared/profile/metadata.tsx b/src/shared/profile/metadata.tsx
index 6d510779..cfac4a05 100644
--- a/src/shared/profile/metadata.tsx
+++ b/src/shared/profile/metadata.tsx
@@ -44,10 +44,10 @@ export default function ProfileMetadata({ id }: { id: string }) {
-
+
{profile?.display_name || profile?.name}
-
+
{profile?.username || (id && shortenKey(id))}
diff --git a/src/shared/tooltip.tsx b/src/shared/tooltip.tsx
index 1594b562..e7548e1f 100644
--- a/src/shared/tooltip.tsx
+++ b/src/shared/tooltip.tsx
@@ -42,7 +42,7 @@ export function Tooltip({
{isOpen && (