Skip to content

Commit

Permalink
feat: 선호구역에 닉네임이 표시되도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbae0 committed Jan 29, 2024
1 parent 3aeadcf commit aa752a7
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/components/pages/FirstTimeline/FirstTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,21 @@ const FirstTimeline = () => {
<Icon name="chair" />
<Txt label={'좌석'} color={'grey90'} typograph={'labelLarge'} />
</S.DescriptionTitleWrapper>
<Txt
label={`${'00'}님의 선호 구역이에요.`}
color={'grey190'}
typograph={'headlineMedium'}
/>
<div
css={css`
display: flex;
`}>
<Txt
label={user?.nickname ?? ''}
color={'primaryBrand'}
typograph={'headlineMedium'}
/>
<Txt
label={`님의 선호 구역이에요.`}
color={'grey190'}
typograph={'headlineMedium'}
/>
</div>
</S.DescriptionWrapper>
<S.PreferRegionImgWrapper>
<div
Expand Down

0 comments on commit aa752a7

Please sign in to comment.