fix unpin

This commit is contained in:
Chris Schinnerl 2021-12-03 10:36:16 +01:00
parent 495dd8d14b
commit 5b3735927a
No known key found for this signature in database
GPG Key ID: 9D2167A83B00583F
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ const actions = [
{
name: "Unpin Skylink",
action: async ({ skylink }, mutate) => {
await toast.promise(ky.delete(`/services/user/uploads/${skylink}`), {
await toast.promise(ky.delete(`/user/uploads/${skylink}`), {
pending: "Unpinning Skylink",
success: "Skylink unpinned",
error: (error) => error.message,