1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix design system error constants (#10246)

The design system error constants were missing a hyphen. Now they match
the CSS color variable they were intended to match.
This commit is contained in:
Mark Stacey 2021-01-22 12:05:01 -03:30 committed by GitHub
parent f6388f260b
commit 288f60bff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,9 +14,9 @@ export const COLORS = {
SUCCESS1: 'success-1',
SUCCESS2: 'success-2',
SUCCESS3: 'success-3',
ERROR1: 'error1',
ERROR2: 'error2',
ERROR3: 'error3',
ERROR1: 'error-1',
ERROR2: 'error-2',
ERROR3: 'error-3',
ALERT1: 'alert-1',
ALERT2: 'alert-2',
ALERT3: 'alert-3',