fix(slack): use markdown format for canvas rename title_content

This commit is contained in:
Waleed Latif
2026-03-04 19:00:03 -08:00
parent 78235e6739
commit 33a9078948

View File

@@ -83,8 +83,8 @@ export const slackEditCanvasTool: ToolConfig<SlackEditCanvasParams, SlackEditCan
if (params.operation === 'rename' && params.title) {
change.title_content = {
type: 'plain_text',
text: params.title,
type: 'markdown',
markdown: params.title,
}
} else if (params.content && params.operation !== 'delete') {
change.document_content = {