Skip to content

Commit

Permalink
fix(knowledge): fix knowledge can not get id error (#208)
Browse files Browse the repository at this point in the history
fix(knowledge): fix knowledge can not get id error
  • Loading branch information
ch-liuzhide authored Aug 17, 2024
2 parents 3413e88 + f38ec68 commit c5f4fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/factory/edit/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ export default function Edit({ params }: { params: { id: string } }) {
)}
{visibleType === VisibleTypeEnum.KNOWLEDGE_DETAIL ? (
<Knowledge
botId={params.id}
botId={botProfile.id}
goBack={() => {
setVisibleType(VisibleTypeEnum.BOT_CONFIG);
}}
Expand Down

0 comments on commit c5f4fd7

Please sign in to comment.