Skip to content

Commit

Permalink
[style] 커피챗 요청목록 메뉴 보낸요청, 받은 요청 없을 때 문구 수정 #380
Browse files Browse the repository at this point in the history
  • Loading branch information
godeka committed May 30, 2024
1 parent 76dbeac commit 968aa3c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions frontend/lib/screen/coffeechat_req_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ class _SentReqState extends State<SentReq> {
snapshot.data!['data'].isEmpty)) {
return const Center(
child: Text(
'보낸 요청이 없습니다 :(',
'보낸 요청이 없어요!\n새로운 커피챗 상대를 찾아보세요.',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.grey,
),
),
Expand Down Expand Up @@ -344,10 +344,9 @@ class _ReceivedReqState extends State<ReceivedReq> {
child: revList.isEmpty
? const Center(
child: Text(
'받은 요청이 없습니다 :(',
'받은 요청이 없어요 :(',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: Colors.grey,
),
),
Expand Down

0 comments on commit 968aa3c

Please sign in to comment.