Skip to content

Commit 6e795e9

Browse files
committed
fix: pending_initialized colors type
1 parent 9bdc3e1 commit 6e795e9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

features/validators/shared/components/status-chip/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const getBackgroundColor = ({
2222
exited_slashed: getColorTransparency(colors.error, '20%'),
2323
withdrawal_possible: getColorTransparency(colors.primary, '20%'),
2424
withdrawal_done: colors.foreground,
25-
pending_initialised: colors.backgroundSecondary,
25+
pending_initialized: colors.backgroundSecondary,
2626
pending_queued: colors.backgroundSecondary,
2727
exited_unslashed: colors.backgroundSecondary,
2828
};

features/validators/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const getValidatorStatusTextColor = ({
1717
exited_slashed: colors.error,
1818
withdrawal_possible: colors.primary,
1919
withdrawal_done: colors.textSecondary,
20-
pending_initialised: colors.textSecondary,
20+
pending_initialized: colors.textSecondary,
2121
pending_queued: colors.textSecondary,
2222
exited_unslashed: colors.textSecondary,
2323
};

0 commit comments

Comments
 (0)