/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ // ui import { Button } from "@plane/propel/button"; function ErrorPage() { const handleRetry = () => { window.location.reload(); }; 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{" "} Forum .

{/* */}
); } export default ErrorPage;