From ebdedd9e04b416d33cca55e9a5ece350c5586325 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 8 Jun 2024 02:44:01 +0900 Subject: [PATCH] refactor(react): standardize registry keys to lowercase This commit modifies the keys in the registry.json file within the React package to follow a consistent, all-lowercase convention. This standardization can aid in maintaining code consistency. --- packages/react/public/registry.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index c39f461..93f2ed6 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -6,8 +6,8 @@ "checkbox": "Checkbox.tsx", "dialog": "Dialog.tsx", "drawer": "Drawer.tsx", - "Input": "Input.tsx", - "Label": "Label.tsx", + "input": "Input.tsx", + "label": "Label.tsx", "popover": "Popover.tsx", "switch": "Switch.tsx", "tabs": "Tabs.tsx",