Skip to content

Commit 5b4de3b

Browse files
committed
style
1 parent 67bcea6 commit 5b4de3b

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

src/background.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -285,12 +285,12 @@ function getBackupToken(service: string) {
285285
xhr.open(
286286
"POST",
287287
"https://www.googleapis.com/oauth2/v4/token?client_id=" +
288-
getCredentials().drive.client_id +
289-
"&client_secret=" +
290-
getCredentials().drive.client_secret +
291-
"&code=" +
292-
value +
293-
"&redirect_uri=https://authenticator.cc/oauth&grant_type=authorization_code"
288+
getCredentials().drive.client_id +
289+
"&client_secret=" +
290+
getCredentials().drive.client_secret +
291+
"&code=" +
292+
value +
293+
"&redirect_uri=https://authenticator.cc/oauth&grant_type=authorization_code"
294294
);
295295
xhr.setRequestHeader("Accept", "application/json");
296296
xhr.setRequestHeader(

src/models/encryption.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ export class Encryption implements IEncryption {
6868
}
6969

7070
console.warn(
71-
`Account ${entry.hash} may have secret ${decryptedSecret}, but hash did not match.`
71+
`Account ${
72+
entry.hash
73+
} may have secret ${decryptedSecret}, but hash did not match.`
7274
);
7375
return null;
7476
} catch (error) {

src/qrdebug.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ function getQrDebug(
6060
`Screen Height: ${window.screen.height}<br>` +
6161
`Capture Width: ${qr.width}<br>` +
6262
`Capture Height: ${qr.height}<br>` +
63-
`Device Pixel Ratio: ${devicePixelRatio} / ${window.devicePixelRatio}<br>` +
63+
`Device Pixel Ratio: ${devicePixelRatio} / ${
64+
window.devicePixelRatio
65+
}<br>` +
6466
`Tab ID: ${tab.id}<br>` +
6567
"<br>" +
6668
"<b>Captured Screenshot:</b>";

0 commit comments

Comments
 (0)