Skip to content

Commit

Permalink
[FIX]: Animation color on FollowSteps (#7736)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcayuelas-ledger authored Sep 3, 2024
1 parent f5c8891 commit 644332f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/sixty-eagles-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ledger-live-desktop": patch
---

Fix Animation Color
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ const getProductName = (modelId: DeviceModelId) =>
getDeviceModel(modelId)?.productName.replace("Ledger", "").trimStart() || modelId;

export default function FollowStepsOnDevice({ modelId, isDeviceBlocker }: Props) {
const { theme } = useTheme();
const { colors } = useTheme();
const theme = colors.palette.type;
const { t } = useTranslation();
const wording = getProductName(modelId);

return (
<>
{isDeviceBlocker ? <DeviceBlocker /> : null}
Expand Down

0 comments on commit 644332f

Please sign in to comment.