1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00

remove a debug log

This commit is contained in:
Puyodead1 2023-12-24 15:19:01 -05:00
parent 85bd86a6e6
commit a9f4aa1ba5
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -36,7 +36,6 @@ function UserMention({ id }: MentionProps) {
React.useEffect(() => {
const getUser = async () => {
const resolvedUser = await app.users.resolve(id);
console.log(`resolvedUser`, resolvedUser);
setUser(resolvedUser ?? null);
};