diff --git a/app/src/organisms/ProtocolDetails/index.tsx b/app/src/organisms/ProtocolDetails/index.tsx
index d6345bf508a..95184222bb1 100644
--- a/app/src/organisms/ProtocolDetails/index.tsx
+++ b/app/src/organisms/ProtocolDetails/index.tsx
@@ -560,154 +560,6 @@ export function ProtocolDetails(
/>
-
-
-
- {analysisStatus !== 'loading' &&
- mostRecentAnalysis != null &&
- mostRecentAnalysis.errors.length > 0 ? (
- e.detail)}
- />
- ) : null}
-
- {protocolDisplayName}
-
-
-
-
- {t('creation_method')}
-
-
-
-
- {analysisStatus === 'loading'
- ? t('shared:loading')
- : creationMethod}
-
-
-
-
- {t('last_updated')}
-
-
- {analysisStatus === 'loading'
- ? t('shared:loading')
- : format(new Date(modified), 'MMM dd yy HH:mm')}
-
-
-
-
- {t('last_analyzed')}
-
-
- {analysisStatus === 'loading'
- ? t('shared:loading')
- : lastAnalyzed}
-
-
-
- handleRunProtocolButtonClick()}
- data-testid="ProtocolDetails_runProtocol"
- disabled={analysisStatus === 'loading'}
- >
- {t('start_setup')}
-
-
-
-
-
-
-
- {t('org_or_author')}
-
-
- {analysisStatus === 'loading'
- ? t('shared:loading')
- : author}
-
-
-
-
- {t('description')}
-
- {analysisStatus === 'loading' ? (
- {t('shared:loading')}
- ) : null}
- {mostRecentAnalysis != null ? (
-
- ) : null}
-
-
-
-
-
- setShowChooseRobotToRunProtocolSlideout(true)
- }
- handleSendProtocolToOT3={() =>
- setShowSendProtocolToOT3Slideout(true)
- }
- storedProtocolData={props}
- data-testid="ProtocolDetails_overFlowMenu"
- />
-
-