Skip to content

Commit

Permalink
fix: typo in migration error message
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipChalupa committed May 27, 2024
1 parent c50e7c9 commit 1449ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/migration-schema/migration-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function getOldCollectionMeta(
false
);
if (found.length > 1) {
throw new Error('more the one old collection meta found');
throw new Error('more than one old collection meta found');
}
return found[0];
}
Expand Down

0 comments on commit 1449ce7

Please sign in to comment.