From 4523badcde16f79286df10bcd3e6b1ae6690437e Mon Sep 17 00:00:00 2001 From: iAmir Date: Sun, 22 Oct 2023 05:29:52 +0330 Subject: [PATCH] new message upon server addition --- frontend/src/pages/servers/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/servers/index.tsx b/frontend/src/pages/servers/index.tsx index baf3bd70f..6bdd4bf5d 100644 --- a/frontend/src/pages/servers/index.tsx +++ b/frontend/src/pages/servers/index.tsx @@ -119,7 +119,7 @@ const AddServer = ({ onAdd }: { onAdd: (server: All) => void }) => { const server = (await response.json()) as All; onAdd(server); toast.notify( - `${server.core.hn} (${server.core.gm}) submitted to the index!`, + `${server.core.hn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!`, { title: "Server Submitted!", }