From d69a17ac49a815f7cb494fe50c0bda015a4d7fba Mon Sep 17 00:00:00 2001 From: Abdelrhman Kamal Mahmoud Ali Slim Date: Fri, 18 Apr 2025 16:55:49 -0700 Subject: [PATCH] =?UTF-8?q?Fix:=20Change=20file=20name=20to=20start=20with?= =?UTF-8?q?=20small=20letter=20instead=20of=20captial=20l=E2=80=A6=20(#356?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/select-input/{Indicator.tsx => indicator.tsx} | 0 codex-cli/src/components/select-input/{Item.tsx => item.tsx} | 0 codex-cli/src/components/select-input/select-input.tsx | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename codex-cli/src/components/select-input/{Indicator.tsx => indicator.tsx} (100%) rename codex-cli/src/components/select-input/{Item.tsx => item.tsx} (100%) diff --git a/codex-cli/src/components/select-input/Indicator.tsx b/codex-cli/src/components/select-input/indicator.tsx similarity index 100% rename from codex-cli/src/components/select-input/Indicator.tsx rename to codex-cli/src/components/select-input/indicator.tsx diff --git a/codex-cli/src/components/select-input/Item.tsx b/codex-cli/src/components/select-input/item.tsx similarity index 100% rename from codex-cli/src/components/select-input/Item.tsx rename to codex-cli/src/components/select-input/item.tsx diff --git a/codex-cli/src/components/select-input/select-input.tsx b/codex-cli/src/components/select-input/select-input.tsx index 264f3f9e..701c655d 100644 --- a/codex-cli/src/components/select-input/select-input.tsx +++ b/codex-cli/src/components/select-input/select-input.tsx @@ -1,5 +1,5 @@ -import Indicator, { type Props as IndicatorProps } from "./Indicator.js"; -import ItemComponent, { type Props as ItemProps } from "./Item.js"; +import Indicator, { type Props as IndicatorProps } from "./indicator.js"; +import ItemComponent, { type Props as ItemProps } from "./item.js"; import isEqual from "fast-deep-equal"; import { Box, useInput } from "ink"; import React, {