Fix user detail tabs

This commit is contained in:
Jonathan Staab 2022-12-13 22:01:26 -08:00
parent 193582cc84
commit 5776db96d0
2 changed files with 2 additions and 4 deletions

View File

@ -11,10 +11,8 @@ Features
- [x] Threads/social - [x] Threads/social
- [x] Search - [x] Search
- [ ] Mentions - [ ] Mentions
- [ ] Add "view thread" page that recurs more deeply
- [ ] Fix replies - notes may only include a "root" in its tags
- [x] Link previews - [x] Link previews
- [ ] Add notes, follows, likes tab to profile - [x] Add notes, follows, likes tab to profile
- [ ] Notifications - [ ] Notifications
- [ ] Images - [ ] Images
- [ ] Server discovery and relay publishing - https://github.com/nostr-protocol/nips/pull/32/files - [ ] Server discovery and relay publishing - https://github.com/nostr-protocol/nips/pull/32/files

View File

@ -89,7 +89,7 @@
</Route> </Route>
<Route path="/chat/:room/edit" component={ChatEdit} /> <Route path="/chat/:room/edit" component={ChatEdit} />
<Route path="/users/:pubkey/:activeTab" let:params> <Route path="/users/:pubkey/:activeTab" let:params>
{#key params.pubkey} {#key params.pubkey + params.activeTab}
<UserDetail {...params} /> <UserDetail {...params} />
{/key} {/key}
</Route> </Route>