From 72413823ce30131c2f3cc627e9c0b1eec51f5050 Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Fri, 10 Nov 2023 09:43:24 -0600 Subject: [PATCH] Friends: Add 'add friend' button to the main page --- server/chat-plugins/friends.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/chat-plugins/friends.ts b/server/chat-plugins/friends.ts index 9c101e72b216..650ec2408e1c 100644 --- a/server/chat-plugins/friends.ts +++ b/server/chat-plugins/friends.ts @@ -98,6 +98,9 @@ export const Friends = new class { } buf += ` `; + buf += `
Add friend:
`; + buf += `
`; + for (const key in categorized) { const friendArray = categorized[key].sort(); if (friendArray.length === 0) continue;