Skip to content

Commit

Permalink
chore(web,mobile): Fix reoccurring typo (#7111)
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsJustRuby committed Feb 14, 2024
1 parent e9f3360 commit 5fc1d43
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "---------------------------------------------------"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
10 changes: 5 additions & 5 deletions web/src/routes/(user)/people/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -222,7 +222,7 @@
}
}
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
Expand Down Expand Up @@ -267,7 +267,7 @@
showChangeNameModal = false;
notificationController.show({
message: 'Changed visibility succesfully',
message: 'Changed visibility successfully',
type: NotificationType.Info,
});
} catch (error) {
Expand Down Expand Up @@ -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) {
Expand All @@ -392,7 +392,7 @@
return person;
});
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
} catch (error) {
Expand Down
6 changes: 3 additions & 3 deletions web/src/routes/(user)/people/[personId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
});
notificationController.show({
message: 'Changed visibility succesfully',
message: 'Changed visibility successfully',
type: NotificationType.Info,
});
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -311,7 +311,7 @@
});
notificationController.show({
message: 'Change name succesfully',
message: 'Change name successfully',
type: NotificationType.Info,
});
} catch (error) {
Expand Down

0 comments on commit 5fc1d43

Please sign in to comment.