add dropdown menu to contact list item

This commit is contained in:
liamcottle
2025-02-13 01:20:54 +13:00
parent 0cb6398160
commit f99724bea2
3 changed files with 78 additions and 0 deletions

View File

@@ -65,6 +65,10 @@ class Connection {
await GlobalState.connection.sendCommandSetDeviceTime(timestamp);
}
static async removeContact(publicKey) {
await GlobalState.connection.sendCommandRemoveContact(publicKey);
}
}
export default Connection;