diff --git a/src/lib/components/world-layers/feed/Feed.svelte b/src/lib/components/world-layers/feed/Feed.svelte index 869f79b..de30c84 100644 --- a/src/lib/components/world-layers/feed/Feed.svelte +++ b/src/lib/components/world-layers/feed/Feed.svelte @@ -69,7 +69,7 @@ button { position: fixed; cursor: pointer; background: $e-ink-medium; - top: 80px; + top: 120px; right: 20px; width: 160px; display: flex; diff --git a/src/lib/components/world-layers/videoLibraries/VideoLibraryComponent.svelte b/src/lib/components/world-layers/videoLibraries/VideoLibraryComponent.svelte index fc6bfc1..8e08cda 100644 --- a/src/lib/components/world-layers/videoLibraries/VideoLibraryComponent.svelte +++ b/src/lib/components/world-layers/videoLibraries/VideoLibraryComponent.svelte @@ -22,12 +22,10 @@ function scrollLeft() { function scrollRight() { carousel.scrollBy({ left: 300, behavior: 'smooth' }); } - console.log("lib!!",lib.activeVideos) $: if (lib) { videosByDate = {}; lib.activeVideos.forEach(video => { - console.log("video.startDate",video.startDate) if(video.startDate !== undefined){ const date = video.startDate?.split('T')[0]; @@ -45,17 +43,12 @@ function scrollRight() { } function selectDate(date) { - console.log("selectDate",date) - console.log("videosByDate[date]",videosByDate[date]) selectedDate = date; selectedVideos = videosByDate[date]; - console.log("ted",selectedVideos) } - -