From 0a7f8c765e32a5a99b7fa30d87e54ff9f182f318 Mon Sep 17 00:00:00 2001 From: Mateusz Bartosik Date: Tue, 21 Oct 2025 14:32:26 +0200 Subject: [PATCH] RDoc-3539 Fix capitalization for Node.js # Conflicts: # src/components/LanguageSwitcher.tsx --- src/components/LanguageSwitcher.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LanguageSwitcher.tsx b/src/components/LanguageSwitcher.tsx index 6f3ff21d64..c5b0f211c6 100644 --- a/src/components/LanguageSwitcher.tsx +++ b/src/components/LanguageSwitcher.tsx @@ -13,7 +13,7 @@ const languageOptions: LanguageOption[] = [ { label: "Java", value: "java", brand: "#f89820" }, { label: "Python", value: "python", brand: "#fbcb24" }, { label: "PHP", value: "php", brand: "#8993be" }, - { label: "Node.JS", value: "nodejs", brand: "#3c873a" }, + { label: "Node.js", value: "nodejs", brand: "#3c873a" }, ]; type LanguageSwitcherProps = {