Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Sep 8, 2023
1 parent 9cebfed commit e422c7f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Text from '../common/Text';
import View from '../common/View';

export function getStatusProps(status: Status) {
let color, backgroundColor, Icon;
let color, backgroundColor, borderColor, Icon;

switch (status) {
case 'missed':
Expand Down Expand Up @@ -66,9 +66,9 @@ export function getStatusProps(status: Status) {
Icon = CheckCircle1;
break;
default:
color = theme.buttonDisabledText;
backgroundColor = theme.buttonDisabledBackground;
borderColor = theme.buttonDisabledBorder;
color = theme.buttonNormalDisabledText;
backgroundColor = theme.buttonNormalDisabledBackground;
borderColor = theme.buttonNormalDisabledBorder;
Icon = CheckCircleHollow;
break;
}
Expand Down

0 comments on commit e422c7f

Please sign in to comment.