diff --git a/templates/example/index.html b/templates/example/index.html
index d0c2221..7aa383b 100644
--- a/templates/example/index.html
+++ b/templates/example/index.html
@@ -471,5 +471,5 @@
}
})
-
+
{% endblock %}
diff --git a/views_api.py b/views_api.py
index 1cbf8d4..27d0d03 100644
--- a/views_api.py
+++ b/views_api.py
@@ -18,7 +18,7 @@
@example_ext_api.get("/test/{example_data}", description="Example API endpoint")
async def api_example(example_data: str) -> Example:
# 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("/vetted", description="Get the vetted extension readme")