ente/web/packages/shared/components/ErrorComponents.tsx
2024-06-14 11:17:51 +05:30

12 lines
332 B
TypeScript

import { t } from "i18next";
import type { DialogBoxAttributesV2 } from "./DialogBoxV2/types";
/**
* {@link DialogBoxAttributesV2} for showing a generic error.
*/
export const genericErrorAttributes = (): DialogBoxAttributesV2 => ({
title: t("ERROR"),
close: { variant: "critical" },
content: t("UNKNOWN_ERROR"),
});