chore(web,mobile): Fix reoccurring typo (#7111)

This commit is contained in:
ItsJustRuby 2024-02-14 09:48:59 +01:00 committed by GitHub
parent e9f3360f02
commit 5fc1d43012
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View File

@ -59,7 +59,7 @@ start_docker_compose() {
}
show_friendly_message() {
echo "Succesfully deployed Immich!"
echo "Successfully deployed Immich!"
echo "You can access the website at http://$ip_address:2283 and the server URL for the mobile app is http://$ip_address:2283/api"
echo "The library location is $upload_location"
echo "---------------------------------------------------"

View File

@ -88,7 +88,7 @@ class UploadProfileImageNotifier
var res = await _userSErvice.uploadProfileImage(file);
if (res != null) {
debugPrint("Succesfully upload profile image");
debugPrint("Successfully upload profile image");
state = state.copyWith(
status: UploadProfileStatus.success,
profileImagePath: res.profileImagePath,

View File

@ -199,7 +199,7 @@
people = people.map((person: PersonResponseDto) => (person.id === personToBeMergedIn.id ? mergedPerson : person));
notificationController.show({
message: 'Merge people succesfully',
message: 'Merge people successfully',
type: NotificationType.Info,
});
} catch (error) {
@ -222,7 +222,7 @@
}
}
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
@ -267,7 +267,7 @@
showChangeNameModal = false;
notificationController.show({
message: 'Changed visibility succesfully',
message: 'Changed visibility successfully',
type: NotificationType.Info,
});
} catch (error) {
@ -365,7 +365,7 @@
return person;
});
notificationController.show({
message: 'Date of birth saved succesfully',
message: 'Date of birth saved successfully',
type: NotificationType.Info,
});
} catch (error) {
@ -392,7 +392,7 @@
return person;
});
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
} catch (error) {

View File

@ -221,7 +221,7 @@
});
notificationController.show({
message: 'Changed visibility succesfully',
message: 'Changed visibility successfully',
type: NotificationType.Info,
});
@ -275,7 +275,7 @@
mergePersonDto: { ids: [personToMerge.id] },
});
notificationController.show({
message: 'Merge people succesfully',
message: 'Merge people successfully',
type: NotificationType.Info,
});
people = people.filter((person: PersonResponseDto) => person.id !== personToMerge.id);
@ -311,7 +311,7 @@
});
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
} catch (error) {