diff --git a/src/lib/components/NotificationBell.svelte b/src/lib/components/NotificationBell.svelte index d96b438e..c6905cfc 100644 --- a/src/lib/components/NotificationBell.svelte +++ b/src/lib/components/NotificationBell.svelte @@ -3,6 +3,7 @@ import { goto } from '$app/navigation'; import { numberOfUnreadNotification } from '$lib/store'; + import Bell from "lucide-svelte/icons/bell"; export let data; export let hasUnreadElement; @@ -17,15 +18,13 @@ async function toggle() { {#if data?.user} -
- +
+ {#if hasUnreadElement}
-
- {$numberOfUnreadNotification <= 9 ? $numberOfUnreadNotification : '9+' } +
+ {$numberOfUnreadNotification <= 9 ? $numberOfUnreadNotification : '9+' }
diff --git a/src/lib/components/Searchbar.svelte b/src/lib/components/Searchbar.svelte index e4b57ceb..f08bd391 100644 --- a/src/lib/components/Searchbar.svelte +++ b/src/lib/components/Searchbar.svelte @@ -3,6 +3,8 @@ import { userRegion, searchBarData, stockTicker, etfTicker, cryptoTicker, screenWidth} from '$lib/store'; import { goto } from '$app/navigation'; import { onMount } from 'svelte'; + import Search from "lucide-svelte/icons/search"; + const usRegion = ['cle1','iad1','pdx1','sfo1']; let apiURL; @@ -321,13 +323,8 @@ $: { -