We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bde5b commit 26c3848Copy full SHA for 26c3848
src/app/error/page.tsx
@@ -52,7 +52,7 @@ export default function ErrorPage() {
52
}
53
54
const isBlockedUser = error?.code === 403 && error?.message?.toLowerCase().includes("blocked");
55
- const isPendingApproval = error?.code === 403 && error?.message?.toLowerCase().includes("pending");
+ const isPendingApproval = error?.code === 403 && error?.message?.toLowerCase().includes("pending approval");
56
57
const getTitle = () => {
58
if (isBlockedUser) return "User Account Blocked";
0 commit comments