mirror of
https://github.com/zulip/zulip.git
synced 2025-11-14 19:06:09 +00:00
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:
@@ -23,7 +23,7 @@ export type UserPill = {
|
|||||||
type: "user";
|
type: "user";
|
||||||
user_id: number;
|
user_id: number;
|
||||||
email: string;
|
email: string;
|
||||||
full_name: string | undefined;
|
full_name: string;
|
||||||
img_src?: string;
|
img_src?: string;
|
||||||
deactivated?: boolean;
|
deactivated?: boolean;
|
||||||
status_emoji_info?: (EmojiRenderingDetails & {emoji_alt_code?: boolean}) | undefined; // TODO: Move this in user_status.js
|
status_emoji_info?: (EmojiRenderingDetails & {emoji_alt_code?: boolean}) | undefined; // TODO: Move this in user_status.js
|
||||||
|
|||||||
Reference in New Issue
Block a user