feat: add font customization

This commit is contained in:
Julien Calixte
2026-02-14 02:00:54 +01:00
parent 33eeb9ae02
commit 44f5663f50
5 changed files with 120 additions and 9 deletions

View File

@@ -3,7 +3,6 @@ type Author = { alias: string; endpoint: string }
const correspondanceCache = new Map<string, Author>()
export const getUniqueAka = async (did: string): Promise<Author> => {
console.log(correspondanceCache)
if (correspondanceCache.has(did)) {
return correspondanceCache.get(did) as Author
}
@@ -18,7 +17,6 @@ export const getUniqueAka = async (did: string): Promise<Author> => {
const author = { alias, endpoint: serviceEndpoint }
correspondanceCache.set(did, author)
console.log(correspondanceCache)
return author
}