diff --git a/docs/sprint-release-notes/sprint-33-WeBuddhist-Studio.md b/docs/sprint-release-notes/sprint-33-WeBuddhist-Studio.md deleted file mode 100644 index 95befa7b..00000000 --- a/docs/sprint-release-notes/sprint-33-WeBuddhist-Studio.md +++ /dev/null @@ -1,25 +0,0 @@ -# 🚀 Sprint Release Notes: Iteration 33 - WeBuddhist-Studio - -**Date:** 2026-04-02 | **Version:** v1.33.0 | **Status:** Shipped | **Repository:** OpenPecha/WeBuddhist-Studio - ---- - -## Summary - -This sprint delivered **2** item(s) in **OpenPecha/WeBuddhist-Studio**. - - -## ✨ New Features - -* **STUDIO: Remove language param for search**: dont send language when performing multilingual search. due to this text were not showing - -Image { + const { data } = await axiosInstance.get(`/api/v1/texts/title-search`, { + params: { + title, + limit, + offset, + }, + }); + return data; +}; + +export const fetchTextDetails = async ({ + textId, + contentId, + segmentId, + direction = "next", + size = 20, +}: SearchTextDetails) => { + const { data } = await axiosInstance.post(`/api/v1/texts/${textId}/details`, { + ...(contentId && { content_id: contentId }), + ...(segmentId && { segment_id: segmentId }), + direction, + size, + }); + return data; +}; + export type { SearchCommon }; diff --git a/src/components/routes/create-plan/CreatePlan.tsx b/src/components/routes/create-plan/CreatePlan.tsx index 44d32d61..d569d3f5 100644 --- a/src/components/routes/create-plan/CreatePlan.tsx +++ b/src/components/routes/create-plan/CreatePlan.tsx @@ -306,6 +306,7 @@ const Createplan = () => {

)}