Skip to content

fix: wallet icon not rendering properly on safari#4965

Merged
0xmkh merged 3 commits intomainfrom
fix/wallet-svg-icon
Sep 8, 2025
Merged

fix: wallet icon not rendering properly on safari#4965
0xmkh merged 3 commits intomainfrom
fix/wallet-svg-icon

Conversation

@0xmkh
Copy link
Copy Markdown
Collaborator

@0xmkh 0xmkh commented Sep 5, 2025

Description

Fixed an issue where the wallet icon from the SIWX screen was not properly rendered on Safari

Type of change

  • Chore (non-breaking change that addresses non-functional tasks, maintenance, or code quality improvements)
  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Associated Issues

For Linear issues: Closes APKT-3700

Checklist

  • Code in this PR is covered by automated tests (Unit tests, E2E tests)
  • My changes generate no new warnings
  • I have reviewed my own code
  • I have filled out all required sections
  • I have tested my changes on the preview link
  • Approver of this PR confirms that the changes are tested on the preview link

@linear
Copy link
Copy Markdown

linear bot commented Sep 5, 2025

@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Sep 5, 2025

🦋 Changeset detected

Latest commit: 652cf41

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 25 packages
Name Type
@reown/appkit-ui Patch
pay-test-exchange Patch
@reown/appkit-adapter-bitcoin Patch
@reown/appkit-adapter-ethers Patch
@reown/appkit-adapter-ethers5 Patch
@reown/appkit-adapter-solana Patch
@reown/appkit-adapter-wagmi Patch
@reown/appkit Patch
@reown/appkit-utils Patch
@reown/appkit-cdn Patch
@reown/appkit-cli Patch
@reown/appkit-codemod Patch
@reown/appkit-common Patch
@reown/appkit-controllers Patch
@reown/appkit-core Patch
@reown/appkit-experimental Patch
@reown/appkit-pay Patch
@reown/appkit-polyfills Patch
@reown/appkit-scaffold-ui Patch
@reown/appkit-siwe Patch
@reown/appkit-siwx Patch
@reown/appkit-testing Patch
@reown/appkit-universal-connector Patch
@reown/appkit-wallet Patch
@reown/appkit-wallet-button Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel
Copy link
Copy Markdown

vercel bot commented Sep 5, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
appkit-basic-html Ready Ready Preview Comment Sep 7, 2025 10:22pm
appkit-demo Ready Ready Preview Comment Sep 7, 2025 10:22pm
appkit-gallery Ready Ready Preview Comment Sep 7, 2025 10:22pm
appkit-laboratory Ready Ready Preview Comment Sep 7, 2025 10:22pm
10 Skipped Deployments
Project Deployment Preview Comments Updated (UTC)
appkit-basic-example Ignored Ignored Sep 7, 2025 10:22pm
appkit-basic-sign-client-example Ignored Ignored Sep 7, 2025 10:22pm
appkit-basic-up-example Ignored Ignored Sep 7, 2025 10:22pm
appkit-ethers5-bera Ignored Ignored Sep 7, 2025 10:22pm
appkit-nansen-demo Ignored Ignored Sep 7, 2025 10:22pm
appkit-vue-solana Ignored Ignored Sep 7, 2025 10:22pm
appkit-wagmi-cdn-example Ignored Ignored Sep 7, 2025 10:22pm
ethereum-provider-wagmi-example Ignored Ignored Sep 7, 2025 10:22pm
next-wagmi-solana-bitcoin-example Ignored Ignored Sep 7, 2025 10:22pm
vue-wagmi-example Ignored Ignored Sep 7, 2025 10:22pm

@0xmkh 0xmkh marked this pull request as ready for review September 5, 2025 11:31
Copilot AI review requested due to automatic review settings September 5, 2025 11:31
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR fixes an issue where the wallet icon was not rendering properly on Safari browsers. The solution replaces the Phosphor icon system with a custom SVG implementation for the wallet icon.

  • Removes wallet icon from Phosphor icon mapping and imports
  • Adds a new custom SVG wallet icon implementation
  • Updates the icon system to use the custom SVG instead of the Phosphor component

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
packages/ui/src/components/wui-icon/index.ts Removes Phosphor wallet icon mapping and adds custom SVG wallet icon implementation
packages/ui/src/assets/svg/wallet.ts Creates new custom SVG wallet icon with proper rendering for Safari
.changeset/silent-bats-return.md Documents the bug fix in the changelog

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Sep 5, 2025

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 78.34% 34903 / 44550
🔵 Statements 78.34% 34903 / 44550
🔵 Functions 76.09% 3840 / 5046
🔵 Branches 86.63% 8240 / 9511
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Changed Files
packages/ui/src/assets/svg/wallet.ts 100% 100% 100% 100%
packages/ui/src/components/wui-icon/index.ts 100% 98.03% 76.69% 100%
Generated in workflow #14890 for commit 652cf41 by the Vitest Coverage Report Action

@linear
Copy link
Copy Markdown

linear bot commented Sep 5, 2025

@enesozturk enesozturk added this pull request to the merge queue Sep 7, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 7, 2025
@0xmkh 0xmkh added this pull request to the merge queue Sep 7, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 7, 2025
@0xmkh 0xmkh added this pull request to the merge queue Sep 7, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 7, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Sep 8, 2025
@0xmkh 0xmkh added this pull request to the merge queue Sep 8, 2025
Merged via the queue into main with commit 120b141 Sep 8, 2025
77 of 79 checks passed
@0xmkh 0xmkh deleted the fix/wallet-svg-icon branch September 8, 2025 09:50
@github-actions github-actions bot mentioned this pull request Sep 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants