openhands / src /components /features /automations /git-sync /git-sync-error-banner.tsx
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
3201ca6 verified
Raw
History Blame Contribute Delete
911 Bytes
import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";
import { formatTimeDelta } from "#/utils/format-time-delta";
interface GitSyncErrorBannerProps {
error: string;
errorAt: string | null;
}
export function GitSyncErrorBanner({
error,
errorAt,
}: GitSyncErrorBannerProps) {
const { t } = useTranslation("openhands");
return (
<div
role="alert"
data-testid="git-sync-error-banner"
className="rounded-md border border-red-500/40 bg-red-500/10 p-3 text-sm text-red-300 whitespace-pre-wrap break-words"
>
<p className="font-medium">
{t(I18nKey.AUTOMATIONS$GIT_SYNC$LAST_ERROR_TITLE)}
</p>
<p className="mt-1">{error}</p>
{errorAt && (
<p className="mt-1 text-xs text-red-300/70">
{`${formatTimeDelta(errorAt)} ${t(I18nKey.CONVERSATION$AGO)}`}
</p>
)}
</div>
);
}