Skip to content

Commit

Permalink
Fix NAB comments
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Jun 18, 2021
1 parent e830882 commit cf8ec7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libs/actions/Session.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function fetchAccountDetails(login) {
* re-authenticating after an authToken expires.
*
* @param {String} authToken
* @param {String} encryptedAuthToken
* @param {String} encryptedAuthToken – Not required for the CreateLogin API call, but passed to setSuccessfulSignInData
* @param {String} email
*/
function createTemporaryLogin(authToken, encryptedAuthToken, email) {
Expand Down
2 changes: 1 addition & 1 deletion src/libs/addEncryptedAuthTokenToURL.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Onyx.connect({
});

/**
* Add encryptedAuthToken to this attachment URL if necessary
* Add encryptedAuthToken to this attachment URL
*
* @param {String} url
* @returns {String}
Expand Down
2 changes: 1 addition & 1 deletion src/libs/migrations/AddEncryptedAuthToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function () {
return reauthenticate('Onyx_Migration_AddEncryptedAuthToken')
.then(() => {
console.debug('[Migrate Onyx] Ran migration AddEncryptedAuthToken');
resolve();
return resolve();
});
}

Expand Down

0 comments on commit cf8ec7e

Please sign in to comment.