diff --git a/compforge/src/Components/ViewTemplateModal.react.jsx b/compforge/src/Components/ViewTemplateModal.react.jsx index 62c2a1d28b60782751c8c0e1c5939df62f6ed001..c5344569bce5f398a6276c6cfc0e16593de7bae2 100644 --- a/compforge/src/Components/ViewTemplateModal.react.jsx +++ b/compforge/src/Components/ViewTemplateModal.react.jsx @@ -45,15 +45,15 @@ function ViewTemplateModal(props) { const body = ( <div style={modalStyle} className={classes.paper}> - <h2 style={{ textAlign: 'center', textDecoration: 'underline' }}>Template Title: {formData.title}</h2> + <h2 style={{ textAlign: 'center', textDecoration: 'underline' }}>{formData.title}</h2> <Container component="main" maxWidth="md"> <div> - <h3>Description:</h3> + <h3>Description</h3> <p style={{borderBottom: '1px solid #999', padding: '16px 16px 32px 16px'}}> {formData.description} </p> </div> - <h3>Questions:</h3> + <h3>Questions | Responses</h3> <div>{renderedQuestions}</div> </Container>