diff --git a/app/pages/api-docs.vue b/app/pages/api-docs.vue index bf21684..7c9f57f 100644 --- a/app/pages/api-docs.vue +++ b/app/pages/api-docs.vue @@ -91,25 +91,14 @@
-
-
-
-
- - {{ target.label }} - -
-
-
-
+
+
+ Weather briefing overview +
+

Developer

About the API

@@ -1095,18 +1084,6 @@ const navigationSections = computed(() => const fullEndpointUrl = (path: string) => `${BASE_URL}${path}` -const quickJumpTargets = computed(() => { - const sectionTargets = filteredSections.value.map((section) => ({ - label: section.title, - anchor: sectionAnchor(section.title), - })) - - return [ - { label: 'About the API', anchor: generalAnchor }, - ...sectionTargets, - ] -}) - const getEndpointKey = (endpoint: EndpointEntry) => `${endpoint.method.toUpperCase()}-${endpoint.path}` const getCopyKey = (endpoint: EndpointEntry, type: 'url' | 'request' | 'response') =>