Skip to content

Commit

Permalink
Merge pull request #27501 from kubabutkiewicz/ts-migration/RenameExpe…
Browse files Browse the repository at this point in the history
…nsifyNewsStatus-lib

[No QA] [TS migration] Migrate 'RenameExpensifyNewsStatus.js' lib to TypeScript
  • Loading branch information
Li357 authored Sep 26, 2023
2 parents 461d694 + 34d2c61 commit b636b64
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 36 deletions.
3 changes: 1 addition & 2 deletions src/libs/migrateOnyx.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import _ from 'underscore';
import Log from './Log';
import RenamePriorityModeKey from './migrations/RenamePriorityModeKey';
import RenameExpensifyNewsStatus from './migrations/RenameExpensifyNewsStatus';
import AddLastVisibleActionCreated from './migrations/AddLastVisibleActionCreated';
import PersonalDetailsByAccountID from './migrations/PersonalDetailsByAccountID';
import RenameReceiptFilename from './migrations/RenameReceiptFilename';
Expand All @@ -12,7 +11,7 @@ export default function () {

return new Promise((resolve) => {
// Add all migrations to an array so they are executed in order
const migrationPromises = [RenamePriorityModeKey, RenameExpensifyNewsStatus, AddLastVisibleActionCreated, PersonalDetailsByAccountID, RenameReceiptFilename];
const migrationPromises = [RenamePriorityModeKey, 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
34 changes: 0 additions & 34 deletions src/libs/migrations/RenameExpensifyNewsStatus.js

This file was deleted.

0 comments on commit b636b64

Please sign in to comment.