This commit is contained in:
2024-10-28 08:04:19 +07:00
parent 0518389f50
commit 9ba95301db
8 changed files with 27 additions and 13 deletions

View File

@@ -26,7 +26,7 @@ export function useProfile(pubkey: string, embed?: string) {
}
}
const query = await commands.getProfile(normalizedId);
const query = await commands.getProfile(normalizedId, false);
if (query.status === "ok") {
return JSON.parse(query.data) as Metadata;