From eaf0842672b799edd0f8d131760b83c224445577 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Sat, 27 Feb 2021 13:46:40 +0900 Subject: [PATCH] feat: added whitesapce no wrap --- components/Application.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Application.tsx b/components/Application.tsx index 32fde96..aee440f 100644 --- a/components/Application.tsx +++ b/components/Application.tsx @@ -4,8 +4,8 @@ import DiscordAvatar from './DiscordAvatar' const Application = ({ type, id, name }:ApplicationProps):JSX.Element => { return
- -

{name.slice(0, 7)}{name.length > 7 && '...'}

+ +

{name}

}