+
{title}
- {inView &&
}
+ {inView &&
}
}
\ No newline at end of file
diff --git a/src/pages/layout.css b/src/pages/layout.css
index 321ad6a..6716a20 100644
--- a/src/pages/layout.css
+++ b/src/pages/layout.css
@@ -99,7 +99,7 @@ header .logo {
cursor: pointer;
}
-header .input {
+header .paper {
min-width: 300px;
height: 32px;
}
@@ -131,11 +131,11 @@ header .profile img {
gap: 8px;
}
- header .input {
+ header .paper {
min-width: unset;
}
- header .input .search-input {
+ header .paper .search-input {
display: none;
}
diff --git a/src/pages/layout.tsx b/src/pages/layout.tsx
index 3a2f8d9..c6545a8 100644
--- a/src/pages/layout.tsx
+++ b/src/pages/layout.tsx
@@ -81,7 +81,7 @@ export function LayoutPage() {
navigate("/")}>
S
-
+
diff --git a/src/pages/stream-page.tsx b/src/pages/stream-page.tsx
index 92a1c5d..c14f746 100644
--- a/src/pages/stream-page.tsx
+++ b/src/pages/stream-page.tsx
@@ -22,7 +22,8 @@ function ProfileInfo({ link }: { link: NostrLink }) {
const thisEvent = useEventFeed(link, true);
const login = useLogin();
const navigate = useNavigate();
- const profile = useUserProfile(System, thisEvent.data?.pubkey);
+ const host = thisEvent.data?.tags.find(a => a[0] === "p" && a[3] === "host")?.[1] ?? thisEvent.data?.pubkey;
+ const profile = useUserProfile(System, host);
const zapTarget = profile?.lud16 ?? profile?.lud06;
const status = findTag(thisEvent.data, "status");
@@ -77,7 +78,7 @@ function ProfileInfo({ link }: { link: NostrLink }) {
)}
-
+
{zapTarget && thisEvent.data && (
-