diff --git a/components/Loading/AcknowledgeModal.jsx b/components/Loading/AcknowledgeModal.jsx index cbd75148d..10f73b526 100644 --- a/components/Loading/AcknowledgeModal.jsx +++ b/components/Loading/AcknowledgeModal.jsx @@ -1,7 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - styled, Box, Modal, Typography, Link, Button, + styled, + Box, + Modal, + Typography, + Link, + Button, } from '@mui/material'; import colors from '@theme/colors'; @@ -44,7 +49,7 @@ const buttonStyle = { fontWeight: '500', }; -function AcknowledgeModal({onClose}) { +function AcknowledgeModal({ onClose }) { const [open, setOpen] = React.useState(true); const handleClose = () => { setOpen(false); @@ -53,10 +58,14 @@ function AcknowledgeModal({onClose}) { return ( - + Welcome to 311Data - + 311-data.org is 100% powered by volunteers from Hack
for LA and is not affiliated with the city of Los Angeles. @@ -65,13 +74,20 @@ function AcknowledgeModal({onClose}) {
Angeles, please visit {' '} - + MyLA311 .
- +
@@ -81,5 +97,5 @@ function AcknowledgeModal({onClose}) { export default AcknowledgeModal; AcknowledgeModal.propTypes = { - onClose: PropTypes.func.isRequired -}; \ No newline at end of file + onClose: PropTypes.func.isRequired, +};