diff --git a/front/components/assistant/conversation/input_bar/InputBar.tsx b/front/components/assistant/conversation/input_bar/InputBar.tsx index 0f95bb7959e5..f88a478c39d2 100644 --- a/front/components/assistant/conversation/input_bar/InputBar.tsx +++ b/front/components/assistant/conversation/input_bar/InputBar.tsx @@ -13,6 +13,7 @@ import { useContext, useEffect, useMemo, useRef, useState } from "react"; import { useFileDrop } from "@app/components/assistant/conversation/FileUploaderContext"; import { GenerationContext } from "@app/components/assistant/conversation/GenerationContextProvider"; +import { InputBarAttachments } from "@app/components/assistant/conversation/input_bar/InputBarAttachments"; import type { InputBarContainerProps } from "@app/components/assistant/conversation/input_bar/InputBarContainer"; import InputBarContainer, { INPUT_BAR_ACTIONS, @@ -24,7 +25,6 @@ import { useUnifiedAgentConfigurations } from "@app/lib/swr/assistants"; import { useConversation } from "@app/lib/swr/conversations"; import { useSpaces } from "@app/lib/swr/spaces"; import { classNames } from "@app/lib/utils"; -import { InputBarAttachments } from "@app/components/assistant/conversation/input_bar/InputBarAttachments"; const DEFAULT_INPUT_BAR_ACTIONS = [...INPUT_BAR_ACTIONS];