fix: 🪲️ 修复视频删除接口路径错误,将/outside更正为/remove

This commit is contained in:
LittleBoy 2025-04-08 16:15:25 +08:00
parent 17c9fa6c10
commit 3d47964580

View File

@ -42,7 +42,7 @@ export function getById(id: Id) {
}
export function deleteFromList(ids: Id[]) {
return post('/video/outside', {ids})
return post('/video/remove', {ids})
}