Skip to content

Commit

Permalink
Fix bg color in ErrorBoundary (#1359)
Browse files Browse the repository at this point in the history
  • Loading branch information
JunichiSugiura authored Feb 1, 2025
1 parent 727e607 commit cb1e7c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/keychain/src/components/ErrorBoundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function ErrorPage({ error }: { error: Error }) {
chainId={chainId}
/>
<LayoutContent className="gap-4">
<div className="flex w-full px-4 py-6 bg-secondary border border-background-200 rounded">
<div className="flex w-full px-4 py-6 bg-background-100 border border-background-200 rounded">
<p className="w-full text-sm">{error.message}</p>
</div>

Expand Down

0 comments on commit cb1e7c4

Please sign in to comment.