Skip to content

Commit

Permalink
Merge pull request #137 from shamanec/fix-app-uninstall
Browse files Browse the repository at this point in the history
Fix application uninstall
  • Loading branch information
shamanec authored Jan 9, 2025
2 parents d8bcc3d + 9b8f273 commit dd3e829
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export default function UninstallApp({ udid, installedApps }) {
setIsUninstalling(true)
const url = `/device/${udid}/uninstallApp`

const body = `{
'app': '` + selectedAppUninstall + `'
} `
const body = {
app: selectedAppUninstall
}

api.post(url, body)
.then(() => {
Expand Down

0 comments on commit dd3e829

Please sign in to comment.