diff options
| -rw-r--r-- | src/components/Labs/Labs.svelte | 5 | ||||
| -rw-r--r-- | src/components/Sidebar.svelte | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/src/components/Labs/Labs.svelte b/src/components/Labs/Labs.svelte index 8e6e445..87f7ed2 100644 --- a/src/components/Labs/Labs.svelte +++ b/src/components/Labs/Labs.svelte @@ -21,11 +21,6 @@ }]; }); - // $: console.log("pt", pts.find( (pt) => { - // return pt.firstname == "Adam" - // })) - - </script> <div class="overflow-auto h-full"> diff --git a/src/components/Sidebar.svelte b/src/components/Sidebar.svelte index 84121a7..c89ab50 100644 --- a/src/components/Sidebar.svelte +++ b/src/components/Sidebar.svelte @@ -17,7 +17,7 @@ { name: "TAMU Html Output", component: null }, // TODO ]; - let selected = sections[3]; + let selected = sections[0]; // Load from local storage. FOR TESTING PURPOSES ONLY. REMOVE THIS FROM PRODUCTION onMount(() => { |
