0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-21 00:52:43 -05:00

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() { 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 "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 "The library location is $upload_location"
echo "---------------------------------------------------" echo "---------------------------------------------------"

View file

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

View file

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

View file

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