diff --git a/src/components/SettingsPopover.astro b/src/components/SettingsPopover.astro index 0558a50..729e3ad 100644 --- a/src/components/SettingsPopover.astro +++ b/src/components/SettingsPopover.astro @@ -1,23 +1,35 @@ --- import Icon from "astro-iconify"; +import { featureFlags, featureLabels } from "../utils/feature-flags"; export interface Props { toggle: string; } +const enabledSettings = Object.keys(featureFlags).filter( + (key) => featureFlags[key] +); + const { toggle } = Astro.props; --- -