🐛 Bug fixes

This commit is contained in:
2024-08-20 01:19:18 +08:00
parent 253cd1ecbd
commit 3ac510c4b1
6 changed files with 9 additions and 1 deletions

View File

@ -246,7 +246,8 @@ class _CallScreenState extends State<CallScreen> with TickerProviderStateMixin {
return Row(
children: [
Text(
call.channel.value!.name,
call.channel.value?.name ??
'unknown'.tr,
style: const TextStyle(
fontWeight: FontWeight.bold,
),