chore(deps): update pre-commit hook pre-commit/mirrors-prettier to v3 (stable) (#2614)

* chore(deps): update pre-commit hook pre-commit/mirrors-prettier to v3

* style: format code using prettier v3.0.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: jo <ljonas@riseup.net>
This commit is contained in:
renovate[bot] 2023-07-06 21:39:05 +02:00 committed by GitHub
parent 74737cf3c4
commit 8c5512cd73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 374 additions and 374 deletions

View file

@ -38,14 +38,14 @@ var AIRTIME = (function (AIRTIME) {
if (response.authResponse) {
mod.getPagesOwnedByUser(
response.authResponse.userID,
response.authResponse.accessToken
response.authResponse.accessToken,
);
mod.addPageTab();
} else {
console.log("Authorization failed.");
}
},
{ scope: "manage_pages" }
{ scope: "manage_pages" },
);
};
@ -55,7 +55,7 @@ var AIRTIME = (function (AIRTIME) {
function (response) {
console.log(response);
},
{ access_token: accessToken }
{ access_token: accessToken },
);
};
@ -79,12 +79,12 @@ var AIRTIME = (function (AIRTIME) {
{ pages: JSON.stringify(pageIdList) },
function () {
alert("Successfully added to your Facebook page!");
}
},
)
.done(function () {})
.fail(function () {
alert(
"Sorry, an error occurred and we were unable to add the widget to your Facebook page."
"Sorry, an error occurred and we were unable to add the widget to your Facebook page.",
);
});
}
@ -92,7 +92,7 @@ var AIRTIME = (function (AIRTIME) {
{
app_id: FACEBOOK_APP_ID,
//redirect_uri: 'https://localhost'
}
},
);
};