ente/web/packages/shared/components/ErrorComponents.tsx
2024-10-09 15:25:00 +05:30

12 lines
332 B
TypeScript

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