From 6bdfadf9034ae6356bedef99abd153aa06d5f55e Mon Sep 17 00:00:00 2001 From: Zamil Majdy Date: Wed, 15 Apr 2026 18:42:57 +0700 Subject: [PATCH] fix(frontend): rename executionIdFilter/Input to executionIDFilter/Input Fully-capitalize the ID acronym in symbol names per repo convention (graphID, useBackendAPI pattern). No functional change. --- .../components/PlatformCostContent.tsx | 10 +++++----- .../components/usePlatformCostContent.ts | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/autogpt_platform/frontend/src/app/(platform)/admin/platform-costs/components/PlatformCostContent.tsx b/autogpt_platform/frontend/src/app/(platform)/admin/platform-costs/components/PlatformCostContent.tsx index 622b963e3e..28d11f6c3c 100644 --- a/autogpt_platform/frontend/src/app/(platform)/admin/platform-costs/components/PlatformCostContent.tsx +++ b/autogpt_platform/frontend/src/app/(platform)/admin/platform-costs/components/PlatformCostContent.tsx @@ -48,8 +48,8 @@ export function PlatformCostContent({ searchParams }: Props) { setBlockInput, typeInput, setTypeInput, - executionIdInput, - setExecutionIdInput, + executionIDInput, + setExecutionIDInput, rateOverrides, handleRateOverride, updateUrl, @@ -250,8 +250,8 @@ export function PlatformCostContent({ searchParams }: Props) { type="text" placeholder="Filter by execution" className="rounded border px-3 py-1.5 text-sm" - value={executionIdInput} - onChange={(e) => setExecutionIdInput(e.target.value)} + value={executionIDInput} + onChange={(e) => setExecutionIDInput(e.target.value)} />