Skip to content

Commit

Permalink
Merge pull request #27690 from software-mansion-labs/ts-migration/Add…
Browse files Browse the repository at this point in the history
…EncryptedAuthToken
  • Loading branch information
cead22 authored Sep 23, 2023
2 parents d0fa1f2 + 2616e95 commit 5aa7f6d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 44 deletions.
3 changes: 1 addition & 2 deletions src/libs/migrateOnyx.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import _ from 'underscore';
import Log from './Log';
import AddEncryptedAuthToken from './migrations/AddEncryptedAuthToken';
import RenamePriorityModeKey from './migrations/RenamePriorityModeKey';
import RenameExpensifyNewsStatus from './migrations/RenameExpensifyNewsStatus';
import AddLastVisibleActionCreated from './migrations/AddLastVisibleActionCreated';
Expand All @@ -13,7 +12,7 @@ export default function () {

return new Promise((resolve) => {
// Add all migrations to an array so they are executed in order
const migrationPromises = [RenamePriorityModeKey, AddEncryptedAuthToken, RenameExpensifyNewsStatus, AddLastVisibleActionCreated, PersonalDetailsByAccountID, RenameReceiptFilename];
const migrationPromises = [RenamePriorityModeKey, RenameExpensifyNewsStatus, AddLastVisibleActionCreated, PersonalDetailsByAccountID, RenameReceiptFilename];

// Reduce all promises down to a single promise. All promises run in a linear fashion, waiting for the
// previous promise to finish before moving onto the next one.
Expand Down
42 changes: 0 additions & 42 deletions src/libs/migrations/AddEncryptedAuthToken.js

This file was deleted.

0 comments on commit 5aa7f6d

Please sign in to comment.