From d4e182cfe01ebbb2394fefa4bc73b875f493af21 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Thu, 27 Jun 2024 14:58:14 +0800 Subject: [PATCH] update name of stack --- frontend/src/lib/stacks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/stacks.ts b/frontend/src/lib/stacks.ts index 8e3a26a..6fe22e0 100644 --- a/frontend/src/lib/stacks.ts +++ b/frontend/src/lib/stacks.ts @@ -12,7 +12,7 @@ export enum Stack { export const STACK_DESCRIPTIONS: { [key in Stack]: { components: string[]; inBeta: boolean }; } = { - html_css: { components: ["HTML", "Css"], inBeta: false }, + html_css: { components: ["HTML", "CSS"], inBeta: false }, html_tailwind: { components: ["HTML", "Tailwind"], inBeta: false }, react_tailwind: { components: ["React", "Tailwind"], inBeta: false }, bootstrap: { components: ["Bootstrap"], inBeta: false },