From 396f7524d73ebc6067a27e80b09cd177da88f021 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Sat, 1 Nov 2025 18:07:51 -0700 Subject: [PATCH] Panel Resize: rename inset --- src/apps/chat/AppChat.tsx | 2 +- .../{panes/GoodPanelResizeHandler.tsx => PanelResizeInset.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/common/components/{panes/GoodPanelResizeHandler.tsx => PanelResizeInset.tsx} (100%) diff --git a/src/apps/chat/AppChat.tsx b/src/apps/chat/AppChat.tsx index 046abb241..b8efa7794 100644 --- a/src/apps/chat/AppChat.tsx +++ b/src/apps/chat/AppChat.tsx @@ -21,7 +21,7 @@ import { ConversationsManager } from '~/common/chat-overlay/ConversationsManager import { ErrorBoundary } from '~/common/components/ErrorBoundary'; import { getLLMContextTokens, LLM_IF_ANT_PromptCaching, LLM_IF_OAI_Vision } from '~/common/stores/llms/llms.types'; import { OptimaDrawerIn, OptimaPanelIn, OptimaToolbarIn } from '~/common/layout/optima/portals/OptimaPortalsIn'; -import { PanelResizeInset } from '~/common/components/panes/GoodPanelResizeHandler'; +import { PanelResizeInset } from '~/common/components/PanelResizeInset'; import { Release } from '~/common/app.release'; import { ScrollToBottom } from '~/common/scroll-to-bottom/ScrollToBottom'; import { ScrollToBottomButton } from '~/common/scroll-to-bottom/ScrollToBottomButton'; diff --git a/src/common/components/panes/GoodPanelResizeHandler.tsx b/src/common/components/PanelResizeInset.tsx similarity index 100% rename from src/common/components/panes/GoodPanelResizeHandler.tsx rename to src/common/components/PanelResizeInset.tsx