Skip to content

Commit 3b31ba0

Browse files
1 parent 41da5db commit 3b31ba0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ui/pages/WalletSelect/WalletList.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ export function WalletList({
245245
* If CSS anchor positioning is supported, we use it to avoid
246246
* nesting buttons, which is invalid per html spec, but still works ¯\_(ツ)_/¯
247247
*/
248-
const supportsCssAnchor = CSS.supports('anchor-name: --name');
248+
// TODO: enable check when Chrome bug with CSS Anchors is fixed
249+
const supportsCssAnchor = false; // CSS.supports('anchor-name: --name');
249250
for (const group of walletGroups) {
250251
for (const wallet of group.walletContainer.wallets) {
251252
const key = `${group.id}-${wallet.address}`;

0 commit comments

Comments
 (0)