user_pill: Mark full_name as always defined.

Since this data is always available to us, no need to mark it
as undefined as a possible case.
This commit is contained in:
Aman Agrawal
2025-06-18 13:14:28 +05:30
committed by Tim Abbott
parent 89212ae680
commit e20e4dcdbd

View File

@@ -23,7 +23,7 @@ export type UserPill = {
type: "user";
user_id: number;
email: string;
full_name: string | undefined;
full_name: string;
img_src?: string;
deactivated?: boolean;
status_emoji_info?: (EmojiRenderingDetails & {emoji_alt_code?: boolean}) | undefined; // TODO: Move this in user_status.js