diff --git a/src/components/WizardFrameworksTeaser/README.md b/src/components/WizardFrameworksTeaser/README.md
index 581db545341b..0684c67b7fb6 100644
--- a/src/components/WizardFrameworksTeaser/README.md
+++ b/src/components/WizardFrameworksTeaser/README.md
@@ -1,3 +1,3 @@
# WizardFrameworksTeaser
-Short “Supports Next.js, React, Python, and N more” line (labels from taxonomy) with a tooltip listing every wizard-supported stack (logos, docs links, “Coming soon” for `status: wip`). Uses `getWizardFrameworkRows()` from `installation-taxonomy.ts`.
+Short “Supports Next.js, React, Python, and N more” line (labels from taxonomy) with a tooltip listing every wizard-supported stack (logos, docs links). Uses `getWizardFrameworkRows()` from `installation-taxonomy.ts`.
diff --git a/src/components/WizardFrameworksTeaser/index.tsx b/src/components/WizardFrameworksTeaser/index.tsx
index 92f464373e04..c7a79c708d03 100644
--- a/src/components/WizardFrameworksTeaser/index.tsx
+++ b/src/components/WizardFrameworksTeaser/index.tsx
@@ -65,9 +65,6 @@ export default function WizardFrameworksTeaser({ className }: { className?: stri
)}
{row.label}
- {row.badge ? (
- {row.badge}
- ) : null}
))}
diff --git a/src/components/WizardSupportedFrameworks/index.tsx b/src/components/WizardSupportedFrameworks/index.tsx
index 2c1c7b69e90f..1649cd66307d 100644
--- a/src/components/WizardSupportedFrameworks/index.tsx
+++ b/src/components/WizardSupportedFrameworks/index.tsx
@@ -16,7 +16,6 @@ export default function WizardSupportedFrameworks({ className }: WizardSupported
label: row.label,
url: row.url,
image: row.image,
- badge: row.badge,
})),
[]
)
diff --git a/src/constants/installation-taxonomy.ts b/src/constants/installation-taxonomy.ts
index 506bf4e2bd10..e34cb25d8195 100644
--- a/src/constants/installation-taxonomy.ts
+++ b/src/constants/installation-taxonomy.ts
@@ -20,8 +20,6 @@ export type InstallItem = {
wizardLabel?: string
/** `getLogo` key when it differs from librarySlug-based resolution */
wizardLogoKey?: string
- /** Wizard lists the stack but install is not available yet */
- status?: 'wip'
/** Full URL when not `/docs/libraries/{librarySlug}` */
wizardDocsUrl?: string
}
@@ -136,9 +134,6 @@ export const TAXONOMY: InstallCategory[] = [
slug: 'flutter',
name: 'Flutter',
librarySlug: 'flutter',
- wizard: true,
- wizardOrder: 21,
- status: 'wip',
},
{
slug: 'kmp',
@@ -171,39 +166,11 @@ export const TAXONOMY: InstallCategory[] = [
wizard: true,
wizardOrder: 13,
},
- {
- slug: 'elixir',
- name: 'Elixir',
- librarySlug: 'elixir',
- wizard: true,
- wizardOrder: 20,
- status: 'wip',
- },
- {
- slug: 'go',
- name: 'Go',
- librarySlug: 'go',
- wizard: true,
- wizardOrder: 22,
- status: 'wip',
- },
- {
- slug: 'java',
- name: 'Java',
- librarySlug: 'java',
- wizard: true,
- wizardOrder: 23,
- status: 'wip',
- },
+ { slug: 'elixir', name: 'Elixir', librarySlug: 'elixir' },
+ { slug: 'go', name: 'Go', librarySlug: 'go' },
+ { slug: 'java', name: 'Java', librarySlug: 'java' },
{ slug: 'php', name: 'PHP', librarySlug: 'php' },
- {
- slug: 'rust',
- name: 'Rust',
- librarySlug: 'rust',
- wizard: true,
- wizardOrder: 24,
- status: 'wip',
- },
+ { slug: 'rust', name: 'Rust', librarySlug: 'rust' },
],
},
{
@@ -305,7 +272,6 @@ export type WizardFrameworkRow = {
label: string
url: string
image?: string
- badge?: string
external: boolean
}
@@ -329,7 +295,6 @@ export function getWizardFrameworkRows(): WizardFrameworkRow[] {
label: item.wizardLabel ?? item.name,
url,
image: getLogo(logoKey),
- badge: item.status === 'wip' ? 'Coming soon' : undefined,
external: url.startsWith('http'),
}
})