Skip to content

Commit

Permalink
feat: Registration completed screen - fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalheartxs committed Oct 14, 2024
1 parent 18f0946 commit 87c76fa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions catalyst_voices/lib/common/ext/string_ext.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@


extension StringExt on String {
String capitalize() {
return '${this[0].toUpperCase()}${this.substring(1).toLowerCase()}';
return '${this[0].toUpperCase()}${substring(1).toLowerCase()}';
}
}

0 comments on commit 87c76fa

Please sign in to comment.