fix checkDatabaseVersion message typo

This commit is contained in:
Francis Cao 2023-01-23 10:06:52 -08:00
parent 7c0db0633f
commit 5bd8608918

View File

@ -57,7 +57,7 @@ async function checkDatabaseVersion(databaseType) {
if (semver.lt(version, minVersion)) {
throw new Error(
`Database version is not compatible. Please upgrade to ${databaseType} version to ${minVersion} or greater`,
`Database version is not compatible. Please upgrade ${databaseType} version to ${minVersion} or greater`,
);
}