Skip to content

Commit

Permalink
Merge pull request #27500 from software-mansion-labs/@Skalakid/ts/Ren…
Browse files Browse the repository at this point in the history
…amePriorityModeKey

[No QA][TS migration] Migrate 'RenamePriorityModeKey.js' lib to TypeScript
  • Loading branch information
Julesssss authored Oct 10, 2023
2 parents f878fbd + e10743d commit 424786b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 35 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 RenamePriorityModeKey from './migrations/RenamePriorityModeKey';
import PersonalDetailsByAccountID from './migrations/PersonalDetailsByAccountID';
import RenameReceiptFilename from './migrations/RenameReceiptFilename';

Expand All @@ -10,7 +9,7 @@ export default function () {

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

This file was deleted.

0 comments on commit 424786b

Please sign in to comment.