mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +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";
 | 
			
		||||
    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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user