Skip to content

Commit

Permalink
revert legacy notebook api route change
Browse files Browse the repository at this point in the history
Signed-off-by: Shenoy Pratik <[email protected]>
  • Loading branch information
ps48 committed Dec 6, 2024
1 parent ab07c2d commit 758e811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/components/notebooks/components/notebook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ export class Notebook extends Component<NotebookProps, NotebookState> {
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),
Expand Down

0 comments on commit 758e811

Please sign in to comment.