mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 23:58:31 -06:00
fix test
This commit is contained in:
@@ -37,7 +37,7 @@ export const canvasPageService = {
|
||||
const body = {
|
||||
wiki_page: {
|
||||
title: page.name,
|
||||
body: markdownToHTMLSafe(page.text, settings),
|
||||
body: markdownToHTMLSafe({ markdownString: page.text, settings }),
|
||||
},
|
||||
};
|
||||
|
||||
@@ -59,7 +59,7 @@ export const canvasPageService = {
|
||||
const body = {
|
||||
wiki_page: {
|
||||
title: page.name,
|
||||
body: markdownToHTMLSafe(page.text, settings),
|
||||
body: markdownToHTMLSafe({ markdownString: page.text, settings }),
|
||||
},
|
||||
};
|
||||
await axiosClient.put(url, body);
|
||||
|
||||
Reference in New Issue
Block a user