fix: Add ability to leave server through server info screen

This commit is contained in:
Declan Chidlow 2024-10-15 20:23:36 +08:00
parent 00e6ead9bd
commit 5e66bc8dc4

View file

@ -38,6 +38,17 @@ export default function ServerInfo({
children: "Edit Identity", children: "Edit Identity",
palette: "primary", palette: "primary",
}, },
{
onClick: () => {
modalController.push({
type: "leave_server",
target: server,
});
return true;
},
children: "Leave Server",
palette: "error",
},
{ {
onClick: () => { onClick: () => {
modalController.push({ modalController.push({