Skip to content

Commit

Permalink
修复分享对话未登录错误
Browse files Browse the repository at this point in the history
  • Loading branch information
239573049 committed May 4, 2024
1 parent a7d20b5 commit a9a13df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/pages/share-chat/(desktop)/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export default function DesktopLayout() {

async function loadingApplication() {
const app = await GetChatShareApplication(id as any);
debugger;
setApplication(app)
}

Expand Down Expand Up @@ -230,7 +231,7 @@ export default function DesktopLayout() {
<DraggablePanel style={{
height: '100%'
}} maxHeight={600} minHeight={180} placement='bottom'>
<FastChatInput dialog={dialog} application={application} setHistory={(v: any[]) => {
<FastChatInput dialog={dialog} id={id} application={application} setHistory={(v: any[]) => {
setHistory(v);
}} history={history} />
</DraggablePanel>
Expand Down

0 comments on commit a9a13df

Please sign in to comment.