feat: 🎸 Fix app start error with MFA configs

This commit is contained in:
Jin
2025-03-25 23:14:25 +01:00
parent ae794a562f
commit 1afccb4129
10 changed files with 51 additions and 46 deletions

9
src/errors/mfa_error.ts Normal file
View File

@@ -0,0 +1,9 @@
class MFAError {
message: string;
constructor(message: string) {
this.message = message;
}
}
export default MFAError;