diff --git a/docs/src/components/Footer.svelte b/docs/src/components/Footer.svelte deleted file mode 100644 index 6ad85ff3..00000000 --- a/docs/src/components/Footer.svelte +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/docs/src/pages/_layout.svelte b/docs/src/pages/_layout.svelte index 7c25d441..6b624263 100644 --- a/docs/src/pages/_layout.svelte +++ b/docs/src/pages/_layout.svelte @@ -17,7 +17,6 @@ } from "carbon-components-svelte"; import LogoGithub20 from "carbon-icons-svelte/lib/LogoGithub20"; import Theme from "../components/Theme.svelte"; - import Footer from "../components/Footer.svelte"; const deprecated = ["ToggleSmall", "Icon"]; const new_components = []; @@ -104,7 +103,7 @@ expanded="{$isActive($url('')) || $isActive($url('/components'))}" text="Components" > - {#each components.children as child, i (child.path)} + {#each components.children.filter((child) => !deprecated.includes(child.title)) as child, i (child.path)} -