Skip to content

Commit 64dad68

Browse files
committed
:sparkles feat(migrations): remove fallback path
1 parent f327731 commit 64dad68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/scripts/src/commands/migrate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function migrations(
2121

2222
const migrations = await Promise.all(
2323
files.map(async (path) => {
24-
const { default: Migration } = (await import(path ?? "")) as {
24+
const { default: Migration } = (await import(path)) as {
2525
default: { new (): RunnableMigration<MigrationContext> };
2626
};
2727

0 commit comments

Comments
 (0)