mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 08:08:56 +00:00
6 lines
167 B
TypeScript
6 lines
167 B
TypeScript
import type { User } from "~/types/User";
|
|
|
|
export function getUserDisplayName(user: User): string {
|
|
return user.name || user.displayName || user.email || user.id;
|
|
}
|