diff --git a/frontend/src/components/projectDetail/index.js b/frontend/src/components/projectDetail/index.js index 4b55e9b794..91547cc215 100644 --- a/frontend/src/components/projectDetail/index.js +++ b/frontend/src/components/projectDetail/index.js @@ -362,8 +362,11 @@ export const ProjectDetail = (props) => { className="bg-white blue-dark ba b--grey-light pa3" /> - {/* show live view button only when the project has live monitoring feature */} - {hasLiveMonitoringFeature && ( + {/* + show live view button only for published projects & + when the project has live monitoring feature + */} + {props.project.status === 'PUBLISHED' && hasLiveMonitoringFeature && (