mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
fix: delete shared chat by id
This commit is contained in:
parent
88c5b7f495
commit
e4d101e550
1 changed files with 1 additions and 1 deletions
|
|
@ -285,7 +285,7 @@ export const shareChatById = async (token: string, id: string) => {
|
|||
export const deleteSharedChatById = async (token: string, id: string) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}`, {
|
||||
const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/share`, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
|
|
|
|||
Loading…
Reference in a new issue