From aee51a1a4cacd09c4659dfb6f61769ce6ff4c9a4 Mon Sep 17 00:00:00 2001 From: Kieran Date: Thu, 26 Jan 2023 14:47:59 +0000 Subject: [PATCH] bug: typo in avatar path --- src/Pages/settings/Profile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages/settings/Profile.tsx b/src/Pages/settings/Profile.tsx index f69695a30..851d5b0cb 100644 --- a/src/Pages/settings/Profile.tsx +++ b/src/Pages/settings/Profile.tsx @@ -87,7 +87,7 @@ export default function ProfileSettings() { async function setNewAvatar() { const rsp = await uploadFile(); if (rsp) { - setPicture(rsp.meta?.url ?? `${VoidCatHost}d/${rsp.id}`); + setPicture(rsp.meta?.url ?? `${VoidCatHost}/d/${rsp.id}`); } }