Skip to content

Commit

Permalink
chore: typecheck fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
valpinkman committed Oct 13, 2023
1 parent 793081b commit b01463b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .changeset/fluffy-penguins-jump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
"dummy-wallet-app": patch
"dummy-live-app": patch
"@ledgerhq/crypto-icons-ui": patch
"webpack.js-example": patch
"ledger-live-desktop": patch
"live-mobile": patch
"@ledgerhq/live-common": patch
"@ledgerhq/native-ui": patch
"@ledgerhq/icons-ui": patch
"@ledgerhq/react-ui": patch
"@ledgerhq/domain-service": patch
"web-tools": patch
"@ledgerhq/live-cli": patch
---

Update react to react 18
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,19 @@ const SeedStep = ({ seedPathStatus, deviceModelId }: Props) => {
productName,
})}
</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText mb={6}>
<Trans i18nKey="syncOnboarding.manual.seedContent.newSeedDescription2">
<Text fontWeight="bold" variant="body" color="neutral.c80">
{""}
</Text>
</Trans>
</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText mb={6}>{t("syncOnboarding.manual.seedContent.newSeedDescription3")}</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText mb={6}>{t("syncOnboarding.manual.seedContent.newSeedDescription4")}</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText>{t("syncOnboarding.manual.seedContent.newSeedDescription5")}</StepText>
<ContinueOnDeviceWithAnim
deviceModelId={deviceModelId}
Expand Down Expand Up @@ -93,6 +97,7 @@ const SeedStep = ({ seedPathStatus, deviceModelId }: Props) => {
productName,
})}
</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText mb={6}>
<Trans
i18nKey="syncOnboarding.manual.seedContent.selectionNewLedger"
Expand All @@ -103,6 +108,7 @@ const SeedStep = ({ seedPathStatus, deviceModelId }: Props) => {
</Text>
</Trans>
</StepText>
{/* @ts-expect-error weird props issue with React 18 */}
<StepText>
<Trans
i18nKey="syncOnboarding.manual.seedContent.selectionRestore"
Expand Down

0 comments on commit b01463b

Please sign in to comment.