From 3fd0b5938f2d71cd56e45c6a3154212bfd34397a Mon Sep 17 00:00:00 2001
From: Nic <nicmalan@gmail.com>
Date: Fri, 14 Jun 2024 15:39:15 +0200
Subject: [PATCH] Fix hard coded localhost url to relative path

---
 docs/content/2.get-started/1.guide/1.concepts.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/2.get-started/1.guide/1.concepts.md b/docs/content/2.get-started/1.guide/1.concepts.md
index c748962b..7587cddc 100644
--- a/docs/content/2.get-started/1.guide/1.concepts.md
+++ b/docs/content/2.get-started/1.guide/1.concepts.md
@@ -16,7 +16,7 @@ These are the core concepts you need to know about vue-final-modal and its appro
 
 ::list{type=success}
   - SSR (Nuxt 3) support. [Teleport](/api/components/vue-final-modal#teleportto) your modals to `'body'`{lang=ts} by default.
-  - [`useModal()`{lang=ts}](http://localhost:3000/api/composables/use-modal) composable to manage your modal programmatically.
+  - [`useModal()`{lang=ts}](/api/composables/use-modal) composable to manage your modal programmatically.
   - Trap keyboard focus within modal element (uses [focus-trap](https://github.com/focus-trap/focus-trap) for best web accessibility).
   - Full control to the zIndex of the nested modals (see [zIndexFn prop](/api/components/vue-final-modal#zindexfn)).
   - Customizable `<Transition>` for the modal content and overlay.