diff --git a/app/javascript/listings/dashboard/rowElements/location.jsx b/app/javascript/listings/dashboard/rowElements/location.jsx
index fd7e57510..c946d2750 100644
--- a/app/javascript/listings/dashboard/rowElements/location.jsx
+++ b/app/javascript/listings/dashboard/rowElements/location.jsx
@@ -2,16 +2,11 @@ import PropTypes from 'prop-types';
import { h } from 'preact';
const Location = ({ location }) => {
- return (
-
- ・
- {location}
-
- )
-}
+ return ・{location};
+};
Location.propTypes = {
location: PropTypes.string.isRequired,
-}
+};
-export default Location;
\ No newline at end of file
+export default Location;