Skip to content

Commit d6400f1

Browse files
committed
confirmations: fix bottom modal backdrop by using valid design token (brandColor.grey900) instead of potentially undefined brandColor.grey600
1 parent 8cbc944 commit d6400f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/Views/confirmations/components/UI/bottom-modal/bottom-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { useTheme } from '../../../../../../util/theme';
88
import { useStyles } from '../../../../../hooks/useStyles';
99
import styleSheet from './bottom-modal.styles';
1010

11-
const OPAQUE_GRAY = brandColor.grey600;
11+
const OPAQUE_GRAY = brandColor.grey900;
1212
interface BottomModalProps {
1313
avoidKeyboard?: boolean;
1414
children: ReactChild;

0 commit comments

Comments
 (0)