Mobile Payees - move to react-aria GridList to improve performance (#5802)

This commit is contained in:
Matiss Janis Aboltins
2025-09-27 21:54:16 +01:00
committed by GitHub
parent 6365a8f4bb
commit 3559b2df3a
5 changed files with 108 additions and 86 deletions

View File

@@ -1,5 +1,5 @@
---
description:
description:
globs: *.ts,*.tsx
alwaysApply: false
---
@@ -21,7 +21,7 @@ Naming Conventions
TypeScript Usage
- Use TypeScript for all code; prefer interfaces over types.
- Use TypeScript for all code; prefer types over interfaces.
- Avoid enums; use objects or maps instead.
- Avoid using `any` or `unknown` unless absolutely necessary. Look for type definitions in the codebase instead.
- Avoid type assertions with `as` or `!`; prefer using `satisfies`.