From 6524e2a044134d79f09f6a233bb927d0b6ac626b Mon Sep 17 00:00:00 2001 From: Adam Butterworth Date: Mon, 4 Mar 2019 14:47:03 -0500 Subject: [PATCH] Move verified next to default --- src/components/ProfilePage/Certificates.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/ProfilePage/Certificates.jsx b/src/components/ProfilePage/Certificates.jsx index 1c73427..12f5706 100644 --- a/src/components/ProfilePage/Certificates.jsx +++ b/src/components/ProfilePage/Certificates.jsx @@ -53,12 +53,11 @@ class Certificates extends React.Component { const { intl } = this.props; const certificateIllustration = ((type) => { switch (type) { - case 'Verified Certificate': - return verifiedCertificateSVG; case 'Professional Certificate': return professionalCertificateSVG; case 'MicroMasters Certificate': return microMastersSVG; + case 'Verified Certificate': default: return verifiedCertificateSVG; }