mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
chore(web,mobile): Fix reoccurring typo (#7111)
This commit is contained in:
parent
e9f3360f02
commit
5fc1d43012
@ -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 "---------------------------------------------------"
|
||||
|
@ -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,
|
||||
|
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user