diff options
-rw-r--r-- | src/lib/api.ts | 3 | ||||
-rw-r--r-- | src/routes/index.svelte | 1 | ||||
-rw-r--r-- | src/routes/items.svelte | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/api.ts b/src/lib/api.ts index 4ffa87d..243cf2b 100644 --- a/src/lib/api.ts +++ b/src/lib/api.ts @@ -1,2 +1 @@ -// export const API_URL = 'https://skyblock-api.matdoes.dev/' -export const API_URL = 'http://localhost:8080/' +export const API_URL = 'https://skyblock-api.matdoes.dev/' diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 750ceca..4c11a88 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -55,6 +55,7 @@ <li><a href="/chat">Fake chat generator</a></li> <li><a href="https://skyblock-npcs.matdoes.dev">NPC Skin Stealer</a></li> <li><a href="/election">Mayor Election Status</a></li> + <li><a href="/items">Item List</a></li> </ul> </section> diff --git a/src/routes/items.svelte b/src/routes/items.svelte index a14dd85..2d863b3 100644 --- a/src/routes/items.svelte +++ b/src/routes/items.svelte @@ -77,7 +77,7 @@ </time> </div> <h1>SkyBlock Item List</h1> - <p class="results-count">{filteredItems.length.toLocaleString()} items.</p> + <p class="results-count">{filteredItems.length.toLocaleString()} items</p> <div class="filter-items-settings"> <input type="text" id="filter-items-tier" placeholder="Search..." bind:value={query} /> |