/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { comment } from '@/server/web/views/_.js'; import type { CommonPropsMinimum } from '@/server/web/views/_.js'; export function ErrorPage(props: { title?: string; code: string; id: string; }) { return ( <> {''} {comment} {props.title ?? 'An error has occurred... | Misskey'}

Failed to initialize Misskey

If reloading after a period of time does not resolve the problem, contact the server administrator with the following ERROR ID.

ERROR CODE: {props.code}
ERROR ID: {props.id}

The following actions may solve the problem.

Update your os and browser

Disable an adblocker

Clear your browser cache

(Tor Browser) Set dom.webaudio.enabled to true

Other options
); }