Merged
Conversation
CI ran `bun install --frozen-lockfile` and failed because the lockfile drifted from package.json after `bun add @ledgerhq/* + @trezor/connect` was run locally without committing the lockfile. Restores parity. The deps end up in two places: - safe-tx/package.json: optionalDependencies (the canonical declaration — only consumed when the matching signer is selected) - root package.json: dependencies (a side effect of `bun add` from the repo root; harmless, just hoists the install) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Aligns 7 panels (FundPool, Reclaim, Withdraw, SetFees, ClaimLimits,
History, Versions) on the same eyebrow + title pattern already used by
AdminsPanel / UpgradeAuthorityPanel / PendingSafeTxsPanel:
<span text-[10px] font-mono uppercase tracking-widest>{eyebrow}</span>
<h2 font-semibold>{title}</h2>
Eyebrows carry scope information (Admin only / Public / Activity / ERC-
7936) so the section's permission boundary is legible at a glance,
without burning a sentence on it. VersionsPanel promotes the ERC-7936
link from inside the title to the eyebrow itself.
H3 headings inside cards are also promoted to H2 so the document
outline matches the visual hierarchy.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes CI build failure on main after Safe followups merge — bun install --frozen-lockfile was failing because @ledgerhq/* + @trezor/connect added locally without committing bun.lock.