mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	fix(mobile): format
This commit is contained in:
		| @@ -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(" "); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user