From 758e811ec4b02c800b829010c55d935a90cec399 Mon Sep 17 00:00:00 2001 From: Shenoy Pratik Date: Thu, 5 Dec 2024 16:30:44 -0800 Subject: [PATCH] revert legacy notebook api route change Signed-off-by: Shenoy Pratik --- public/components/notebooks/components/notebook.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/components/notebooks/components/notebook.tsx b/public/components/notebooks/components/notebook.tsx index 3b6b01b7a..00ee14fda 100644 --- a/public/components/notebooks/components/notebook.tsx +++ b/public/components/notebooks/components/notebook.tsx @@ -538,7 +538,7 @@ export class Notebook extends Component { const isValid = isValidUUID(this.props.openedNoteId); const route = isValid ? `${NOTEBOOKS_API_PREFIX}/savedNotebook/paragraph/update/run` - : `${NOTEBOOKS_API_PREFIX}/paragraph/update/run`; + : `${NOTEBOOKS_API_PREFIX}/paragraph/update/run/`; return this.props.http .post(route, { body: JSON.stringify(paraUpdateObject),