diff --git a/frontend/templates/person.html b/frontend/templates/person.html
index 8d46d73..936f4d5 100644
--- a/frontend/templates/person.html
+++ b/frontend/templates/person.html
@@ -2,11 +2,5 @@
{{ person.last_name }}
{{ person.phone_number }}
- {% match person.location %}
- {% when Some with (loc) %}
-
{{ loc }}
- {% else %}
-
No location
- {% endmatch %}
diff --git a/frontend/templates/persons.html b/frontend/templates/persons.html
index b223874..b0e2535 100644
--- a/frontend/templates/persons.html
+++ b/frontend/templates/persons.html
@@ -11,12 +11,6 @@
{{ person.last_name }}
{{ person.phone_number }}
- {% match person.location %}
- {% when Some with (loc) %}
-
{{ loc }}
- {% else %}
-
No location
- {% endmatch %}
{% endfor %}
diff --git a/person/src/main.rs b/person/src/main.rs
index 91c937b..bbfde4a 100644
--- a/person/src/main.rs
+++ b/person/src/main.rs
@@ -56,7 +56,7 @@ struct Args {
async fn create_person(pool: &PgPool, person: CreatePersonDto) -> Result