Skip to content

Commit f962eb0

Browse files
- Fix formatting
1 parent 063b4ed commit f962eb0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/msal-browser/src/crypto/BrowserCrypto.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ export function validateCryptoAvailable(
7979
* @param performanceClient {?IPerformanceClient}
8080
* @param correlationId {?string} correlation id
8181
*/
82-
export async function sha256Digest(
83-
dataString: string
84-
): Promise<ArrayBuffer> {
82+
export async function sha256Digest(dataString: string): Promise<ArrayBuffer> {
8583
const encoder = new TextEncoder();
8684
const data = encoder.encode(dataString);
8785
return window.crypto.subtle.digest(

lib/msal-common/src/client/AuthorizationCodeClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class AuthorizationCodeClient extends BaseClient {
101101
this.cryptoUtils,
102102
this.logger,
103103
this.config.serializableCache,
104-
this.config.persistencePlugin,
104+
this.config.persistencePlugin
105105
);
106106

107107
// Validate response. This function throws a server error if an error is returned by the server.

0 commit comments

Comments
 (0)