diff --git a/src/screens/providers/components/GraphStatus.js b/src/screens/providers/components/GraphStatus.js
index 8d65e4f6..6f426938 100644
--- a/src/screens/providers/components/GraphStatus.js
+++ b/src/screens/providers/components/GraphStatus.js
@@ -115,18 +115,18 @@ class GraphStatus extends React.Component {
           <h4 style={{ fontWeight: 'bold', margin: '0' }}>Base graph status</h4>
         </div>
         <div style={wrapperStyle}>
-          {baseGraphStatus.otp2 && (
-            <GraphStatusDetails
-              status={baseGraphStatus.otp2.status}
-              started={baseGraphStatus.otp2.started}
-            />
-          )}
           {graphStatus.otp2 && (
             <GraphStatusDetails
               status={'STARTED'}
               started={graphStatus.otp2.started}
             />
           )}
+          {baseGraphStatus.otp2 && (
+            <GraphStatusDetails
+              status={baseGraphStatus.otp2.status}
+              started={baseGraphStatus.otp2.started}
+            />
+          )}
         </div>
       </div>
     );