'use client';

export default function ThirdPartyApiSettingsError({ reset }: { error: Error; reset: () => void }) {
  return (
    <div className="card">
      <h2>Third-party API settings could not load</h2>
      <p className="muted">The dashboard could not fetch provider integration settings from the API.</p>
      <button className="btn-primary" type="button" onClick={reset}>Retry</button>
    </div>
  );
}
