mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-21 18:06:30 +02:00
fix server list accordions to use server id instead of name
This commit is contained in:
@@ -45,7 +45,7 @@ export const ServerList = () => {
|
|||||||
{Object.keys(serverListQuery)?.map((serverId) => {
|
{Object.keys(serverListQuery)?.map((serverId) => {
|
||||||
const server = serverListQuery[serverId];
|
const server = serverListQuery[serverId];
|
||||||
return (
|
return (
|
||||||
<Accordion.Item key={server.id} value={server.name}>
|
<Accordion.Item key={server.id} value={server.id}>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group>
|
<Group>
|
||||||
<img
|
<img
|
||||||
|
|||||||
Reference in New Issue
Block a user