Refactor authentication middleware to use native fetch, update dependencies, and enhance error handling. Add new error boundary component for dashboard and improve user verification UI. Update payment handling and device management components for better user experience. Adjust CSS for error backgrounds and refine input read-only components with validation indicators.
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 3m9s

This commit is contained in:
2025-01-15 10:35:03 +05:00
parent d14b0b35a3
commit 8ffabb1fcb
23 changed files with 535 additions and 303 deletions

View File

@ -54,7 +54,7 @@ export default function UserRejectDialog({ user }: { user: User }) {
},
error: (error) => {
setDisabled(false)
return error || "Something went wrong"
return error.message || "Something went wrong"
},
})
setDisabled(false)