Skip to content

Commit

Permalink
fix: explore workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola committed Jun 21, 2024
1 parent 09f0bfd commit 5ff620e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion web/app/components/base/chat/chat-with-history/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ export const useChatWithHistory = (installedAppInfo?: InstalledApp) => {
const { id, app } = installedAppInfo!
return {
app_id: id,
site: { title: app.name, icon: app.icon, icon_background: app.icon_background, prompt_public: false, copyright: '' },
site: {
title: app.name,
icon: app.icon,
icon_background: app.icon_background,
prompt_public: false,
copyright: '',
workflow: 'show',
},
plan: 'basic',
} as AppData
}
Expand Down

0 comments on commit 5ff620e

Please sign in to comment.