diff --git a/src/app.tsx b/src/app.tsx index 24d84fb4a..a188cc64d 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -253,7 +253,7 @@ const router = createHashRouter([ { path: "tracks", element: }, { path: "videos", element: }, { path: "zaps", element: }, - { path: "likes", element: }, + { path: "reactions", element: }, { path: "lists", element: }, { path: "followers", element: }, { path: "following", element: }, diff --git a/src/views/user/index.tsx b/src/views/user/index.tsx index 59b51ed08..3eab24c94 100644 --- a/src/views/user/index.tsx +++ b/src/views/user/index.tsx @@ -48,7 +48,7 @@ const tabs = [ { label: "Zaps", path: "zaps" }, { label: "Lists", path: "lists" }, { label: "Following", path: "following" }, - { label: "Likes", path: "likes" }, + { label: "Reactions", path: "reactions" }, { label: "Relays", path: "relays" }, { label: "Goals", path: "goals" }, { label: "Tracks", path: "tracks" }, diff --git a/src/views/user/reactions.tsx b/src/views/user/reactions.tsx index 05afc3b11..d642252ce 100644 --- a/src/views/user/reactions.tsx +++ b/src/views/user/reactions.tsx @@ -48,7 +48,7 @@ export default function UserReactionsTab() { const contextRelays = useAdditionalRelayContext(); const readRelays = useReadRelays(contextRelays); - const timeline = useTimelineLoader(`${pubkey}-likes`, readRelays, { authors: [pubkey], kinds: [7] }); + const timeline = useTimelineLoader(`${pubkey}-reactions`, readRelays, { authors: [pubkey], kinds: [7] }); const reactions = useSubject(timeline.timeline); const callback = useTimelineCurserIntersectionCallback(timeline);