mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import type { Account } from 'masto'
|
|
|
|
export function getDisplayName(account: Account) {
|
|
return account.displayName || account.username
|
|
}
|