Bookmark folder editing

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-09-24 18:15:49 +02:00
commit 2b6de423d5
10 changed files with 269 additions and 11 deletions

View file

@ -1927,9 +1927,9 @@ const updateBookmarkFolder = ({ folderId, name, emoji, credentials }) => {
return fetch(url, {
headers,
method: 'PUT',
method: 'PATCH',
body: JSON.stringify({ name, emoji })
})
}).then((data) => data.json())
}
const deleteBookmarkFolder = ({ folderId, credentials }) => {