// Copyright: © 2026 TWWIM UG. All rights reserved. (www.twwim.com) /** * SaveErrorBanner — red banner surfacing the mutation failure message. * * @layer Presentation */ import { AlertCircle } from 'lucide-react'; import type { TFunction } from '../lib/constants'; interface SaveErrorBannerProps { error: Error; t: TFunction; } export function SaveErrorBanner({ error, t }: SaveErrorBannerProps) { return (
{t('tenants.pluginSettings.saveFailed')}
{error.message}