Fix frozen unknown device ID for new accounts (#11449)

This commit is contained in:
DS Boyce
2026-08-12 08:54:01 -07:00
committed by GitHub
parent 34274647f2
commit 4ed34cb242
3 changed files with 34 additions and 2 deletions
+9 -1
View File
@@ -224,6 +224,7 @@ return conditional styles inline in a style array: `web({cursor: 'pointer'})`,
- Prefer prop destructuring via parameters over a const within the component.
- Prefer inline types over `Props` types or interfaces.
- Set reasonable defaults for optional props.
- Prefer the implicit global `React` for types over `type` imports.
```tsx
import {Fragment} from 'react'
@@ -232,7 +233,13 @@ import {Trans} from '@lingui/react/macro'
import {Text} from '#/components/Typography'
function MyComponent({items = []}: {items?: string[]}) {
function MyComponent({
items = [],
children,
}: {
items?: string[]
children: React.ReactNode
}) {
return (
<>
<View>
@@ -247,6 +254,7 @@ function MyComponent({items = []}: {items?: string[]}) {
<Text>{item}</Text>
</Fragment>
))}
{children}
</View>
</>
)