Skip to content

Commit

Permalink
Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Decoder07 committed May 15, 2024
1 parent 8ec769c commit d8d3093
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/hms_room_kit/lib/src/preview/preview_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,12 @@ class _PreviewPageState extends State<PreviewPage> {
nameController,
width: width * 0.38,
onPressed: () {
nameController.text
.trim()
.isEmpty
? null
: _navigateToMeeting(
previewStore);
if (nameController.text
.trim()
.isNotEmpty) {
_navigateToMeeting(
previewStore);
}
},
childWidget:
PreviewJoinButton(
Expand Down

0 comments on commit d8d3093

Please sign in to comment.