diff --git a/js/src/components/contact-information/index.js b/js/src/components/contact-information/index.js index 12fcd254a0..1c7b97099a 100644 --- a/js/src/components/contact-information/index.js +++ b/js/src/components/contact-information/index.js @@ -10,7 +10,6 @@ import useGoogleMCPhoneNumber from '.~/hooks/useGoogleMCPhoneNumber'; import Section from '.~/wcdl/section'; import VerticalGapLayout from '.~/components/vertical-gap-layout'; import AppDocumentationLink from '.~/components/app-documentation-link'; -import AppSpinner from '.~/components/app-spinner'; import PhoneNumberCard from './phone-number-card'; const description = __( @@ -50,18 +49,14 @@ export default function ContactInformation( { view, onPhoneNumberChange } ) { } > - { phone.loaded ? ( - - - TODO: add store address card - - ) : ( - - ) } + + + TODO: add store address card + ); }