From 9bd992cc74b6ce210b34136c81202807e722c8b9 Mon Sep 17 00:00:00 2001 From: Caleb Nance Date: Tue, 11 Jul 2023 12:59:27 -0400 Subject: [PATCH] re-arrange Tritanomaly order for Color Step --- src/data/color-blindness-types.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/data/color-blindness-types.js b/src/data/color-blindness-types.js index dd1f481..81d6ab1 100644 --- a/src/data/color-blindness-types.js +++ b/src/data/color-blindness-types.js @@ -5,13 +5,6 @@ import ColorBlindness from '../icons/color-blindness'; // setup color blindness options export default { - normal: { - id: '1', - desc: 'Trichromatic—can distinguish all the primary colours', - icon: , - population: '68%', - value: 'Tritanomaly' - }, deuteranomaly: { id: '2', desc: 'Deuteranomaly—reduced sensitivity to green trouble distinguishing reds & greens', @@ -60,5 +53,12 @@ export default { icon: , population: '0.05%', value: 'Achromatopsia' + }, + normal: { + id: '1', + desc: 'Trichromatic—can distinguish all the primary colours', + icon: , + population: '68%', + value: 'Tritanomaly' } };