diff options
author | 2024-04-24 12:12:47 +0200 | |
---|---|---|
committer | 2024-04-24 11:12:47 +0100 | |
commit | 7a1e6394831fb07e303c5ed0900dfe1ea4820de5 (patch) | |
tree | bcd526463b19a85fbe821dcad2276da401daec18 /web/source/settings/components/account-list.tsx | |
parent | [chore]: Bump codeberg.org/gruf/go-mutexes from 1.4.0 to 1.4.1 (#2860) (diff) | |
download | gotosocial-7a1e6394831fb07e303c5ed0900dfe1ea4820de5.tar.xz |
[chore] Refactor settings panel routing (and other fixes) (#2864)
Diffstat (limited to 'web/source/settings/components/account-list.tsx')
-rw-r--r-- | web/source/settings/components/account-list.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/source/settings/components/account-list.tsx b/web/source/settings/components/account-list.tsx index 4df05c046..c4420b5bc 100644 --- a/web/source/settings/components/account-list.tsx +++ b/web/source/settings/components/account-list.tsx @@ -64,11 +64,11 @@ export function AccountList({ return ( <div className="list"> - {data.map(({ account: acc }) => ( + {data.map(({ account: acc }) => ( <Link key={acc.acct} className="account entry" - href={`/settings/admin/accounts/${acc.id}`} + href={`/${acc.id}`} > {acc.display_name?.length > 0 ? acc.display_name @@ -79,4 +79,4 @@ export function AccountList({ ))} </div> ); -}
\ No newline at end of file +} |