diff --git a/src/routes/price-alert/+page.svelte b/src/routes/price-alert/+page.svelte
index 783e9443..8ee13afd 100644
--- a/src/routes/price-alert/+page.svelte
+++ b/src/routes/price-alert/+page.svelte
@@ -6,6 +6,7 @@ import { goto } from '$app/navigation';
import {screenWidth } from '$lib/store';
import MiniPlot from '$lib/components/MiniPlot.svelte';
import { onMount } from 'svelte';
+import ArrowLogo from "lucide-svelte/icons/move-up-right";
let cloudFrontUrl = import.meta.env.VITE_IMAGE_URL;
@@ -146,7 +147,7 @@ async function handleDelete() {
'priceAlertIdList': deletePriceAlertList
}
- const response = await fetch(fastifyURL+'/delete-price-alert', {
+ const response = await fetch(data?.fastifyURL+'/delete-price-alert', {
method: 'POST',
headers: {
"Content-Type": "application/json"
@@ -209,11 +210,26 @@ $: charNumber = $screenWidth < 640 ? 15 : 40;
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -256,7 +272,7 @@ $: charNumber = $screenWidth < 640 ? 15 : 40;
{#if isLoaded}
-
+
Stock Indexes - {getCurrentDateFormatted()}
@@ -269,6 +285,8 @@ $: charNumber = $screenWidth < 640 ? 15 : 40;
+
+
@@ -403,8 +421,64 @@ $: charNumber = $screenWidth < 640 ? 15 : 40;
{/if}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file