Skip to content

Commit 1786327

Browse files
committed
fix: missing delete_policy param
1 parent e254e33 commit 1786327

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/pages/home/toolbar/OfflineDownload.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ export const OfflineDownload = () => {
8484
</Box>
8585
}
8686
onSubmit={async (urls) => {
87-
const resp = await ok(pathname(), urls.split("\n"), tool())
87+
const resp = await ok(
88+
pathname(),
89+
urls.split("\n"),
90+
tool(),
91+
deletePolicy(),
92+
)
8893
handleRespWithNotifySuccess(resp, () => {
8994
onClose()
9095
})

0 commit comments

Comments
 (0)