// Copyright: © 2026 TWWIM UG. All rights reserved. (www.twwim.com) /** * PluginSettingsLoadError — red panel shown when the settings query fails. * * @layer Presentation */ import type { TFunction } from '../lib/constants'; interface PluginSettingsLoadErrorProps { error: Error; t: TFunction; } export function PluginSettingsLoadError({ error, t, }: PluginSettingsLoadErrorProps) { return (

{t('tenants.pluginSettings.loadFailedTitle')}

{error.message}

); }