diff --git a/templates/example/index.html b/templates/example/index.html
index 76aa13f..b0997a9 100644
--- a/templates/example/index.html
+++ b/templates/example/index.html
@@ -1,7 +1,7 @@
{% extends "base.html" %} {% from "macros.jinja" import window_vars with context
%} {% block scripts %} {{ window_vars(user) }}
-
+
{% endblock %} {% block page %}
diff --git a/views_api.py b/views_api.py
index d90ca72..6669ee6 100644
--- a/views_api.py
+++ b/views_api.py
@@ -22,7 +22,7 @@ async def api_example(example_data: str) -> Example:
detail="Invalid example data",
)
# Do some python things and return the data
- return Example(id="1", wallet=example_data)
+ return Example(id="2", wallet=example_data)
@example_ext_api.get(