Fix UpdateNotionPageToolUI args type to match backend signature

This commit is contained in:
CREDO23 2026-02-13 15:32:38 +02:00
parent eca5332d81
commit 2327ec9326

View file

@ -424,7 +424,7 @@ function SuccessCard({ result }: { result: SuccessResult }) {
}
export const UpdateNotionPageToolUI = makeAssistantToolUI<
{ page_id: string; content: string },
{ page_title: string; content: string },
UpdateNotionPageResult
>({
toolName: "update_notion_page",