Update scripts/change-password.js

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Md Irfan Hasan Fahim 2025-05-23 02:54:45 +06:00 committed by GitHub
parent 46da6f3770
commit bef6dca806
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ async function changePassword() {
console.log(`Password changed successfully for ${username}.`);
} catch (e) {
console.error('Error changing password:', e);
console.error('Error changing password:', e.message || e);
} finally {
await prisma.$disconnect();
}