diff --git a/web/app/components/explore/installed-app/index.tsx b/web/app/components/explore/installed-app/index.tsx index 9fbee85f23..097a281def 100644 --- a/web/app/components/explore/installed-app/index.tsx +++ b/web/app/components/explore/installed-app/index.tsx @@ -15,12 +15,7 @@ const InstalledApp: FC = ({ }) => { const { installedApps } = useContext(ExploreContext) const installedApp = installedApps.find(item => item.id === id) - const app = installedApp ? { - id: installedApp.id, - name - } : null - if(!installedApp) { return (
@@ -30,7 +25,7 @@ const InstalledApp: FC = ({ } return ( -
+
{installedApp?.app.mode === 'chat' ? ( ): ( diff --git a/web/app/components/explore/sidebar/index.tsx b/web/app/components/explore/sidebar/index.tsx index b9458bf2a7..2d44676100 100644 --- a/web/app/components/explore/sidebar/index.tsx +++ b/web/app/components/explore/sidebar/index.tsx @@ -70,7 +70,7 @@ const SideBar: FC<{ }, [controlUpdateInstalledApps]) return ( -
+
= ({ {/* {isNewConversation ? 'new' : 'exist'} {JSON.stringify(newConversationInputs ? newConversationInputs : {})} {JSON.stringify(existConversationInputs ? existConversationInputs : {})} */} -
+
{/* sidebar */} {!isMobile && renderSidebar()} {isMobile && isShowSidebar && ( diff --git a/web/app/components/share/chat/sidebar/index.tsx b/web/app/components/share/chat/sidebar/index.tsx index e0bdc2befa..d1515d5314 100644 --- a/web/app/components/share/chat/sidebar/index.tsx +++ b/web/app/components/share/chat/sidebar/index.tsx @@ -39,7 +39,7 @@ const Sidebar: FC = ({
= ({ 'bg-gray-50' )}> {/* Left */} -
+
diff --git a/web/app/components/share/text-generation/style.module.css b/web/app/components/share/text-generation/style.module.css index 1fc6b6711b..f55dfef25f 100644 --- a/web/app/components/share/text-generation/style.module.css +++ b/web/app/components/share/text-generation/style.module.css @@ -1,5 +1,7 @@ .installedApp { - height: calc(100vh - 72px); + height: calc(100vh - 74px); + border-radius: 16px; + box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03); } .appIcon {