"use client"; import Link from "next/link"; // plane imports import { API_BASE_URL } from "@plane/constants"; import { Button, TOAST_TYPE, getButtonStyling, setToast } from "@plane/ui"; import { cn } from "@plane/utils"; // hooks import { useAppRouter } from "@/hooks/use-app-router"; // layouts import DefaultLayout from "@/layouts/default-layout"; // services import { AuthService } from "@/services/auth.service"; // services const authService = new AuthService(); export default function CustomErrorComponent() { const router = useAppRouter(); const handleSignOut = async () => { await authService .signOut(API_BASE_URL) .catch(() => setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: "Failed to sign out. Please try again.", }) ) .finally(() => router.push("/")); }; return (

Yikes! That doesn{"'"}t look good.

That crashed Plane, pun intended. No worries, though. Our engineers have been notified. If you have more details, please write to{" "} support@plane.so {" "} or on our{" "} Discord .

Go to home
); }