1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-25 10:43:13 +02:00

fix(mobile): format

This commit is contained in:
Alex Tran 2023-06-27 12:28:15 -05:00
parent 053a5235be
commit 0e8d235148

View File

@ -1,9 +1,9 @@
extension StringExtension on String {
String capitalize() {
return this
.split(" ")
.map((str) =>
str.isEmpty ? str : str[0].toUpperCase() + str.substring(1))
return split(" ")
.map(
(str) => str.isEmpty ? str : str[0].toUpperCase() + str.substring(1),
)
.join(" ");
}
}