Skip to content

Commit

Permalink
remove 's from content
Browse files Browse the repository at this point in the history
  • Loading branch information
kolharsam committed Dec 11, 2023
1 parent edeb8ac commit 73e6089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion furbaby/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ def put(self, request, *args, **kwargs):
"owner_id": str(job_instance.user.id),
"sitter_id": str(application.user.id),
"content": {
"title": f"Job application to sit {'' if application.job.user.first_name is None else application.job.user.first_name}'s {application.job.pet.name} has been accepted",
"title": f"Job application to sit {'' if application.job.user.first_name is None else f'{application.job.user.first_name}s'} {application.job.pet.name} has been accepted",
"message": f"Please connect with the owner on phone number {'' if application.job.user.phone_number is None else application.job.user.phone_number} to discuss other details",
},
}
Expand Down

0 comments on commit 73e6089

Please sign in to comment.