diff --git a/src/components/ConversationCard/index.jsx b/src/components/ConversationCard/index.jsx
index 9016b23..c5c71f8 100644
--- a/src/components/ConversationCard/index.jsx
+++ b/src/components/ConversationCard/index.jsx
@@ -175,11 +175,10 @@ function ConversationCard(props) {
return (
-
+
{props.closeable ? (
{
@@ -189,7 +188,6 @@ function ConversationCard(props) {
) : props.dockable ? (
{
@@ -197,7 +195,7 @@ function ConversationCard(props) {
}}
/>
) : (
-
+
)}
{props.draggable ? (
diff --git a/src/popup/Popup.jsx b/src/popup/Popup.jsx
index ecfa7e9..a6516df 100644
--- a/src/popup/Popup.jsx
+++ b/src/popup/Popup.jsx
@@ -103,23 +103,22 @@ function GeneralPart({ config, updateConfig }) {
})}
{isUsingMultiModeModel(config) && (
-
-
-
+
)}
{isUsingApiKey(config) && (
@@ -154,17 +153,16 @@ function GeneralPart({ config, updateConfig }) {
)}
{isUsingCustomModel(config) && (
-
- {
- const customModelName = e.target.value
- updateConfig({ customModelName: customModelName })
- }}
- />
-
+ {
+ const customModelName = e.target.value
+ updateConfig({ customModelName: customModelName })
+ }}
+ />
)}
{isUsingCustomModel(config) && (
@@ -181,41 +179,39 @@ function GeneralPart({ config, updateConfig }) {