Please check this file in your theme:
Magento_Checkout/web/template/shipping-information/address-renderer/default.html
City Should be remove from there, if yes then please add below code:-
<!-- ko text: address().city --><!-- /ko -->
Then File should be look like this:-
<div class="shipping-address-item" data-bind="css: isSelected() ? 'selected-item' : 'not-selected-item'"> <!-- ko text: address().prefix --><!-- /ko --> <!-- ko text: address().firstname --><!-- /ko --> <!-- ko text: address().lastname --><!-- /ko --> <!-- ko text: address().suffix --><!-- /ko --><br/> <!-- ko text: address().street --><!-- /ko --><br/> <!-- ko text: address().city --><!-- /ko -->, <!-- ko text: address().region --><!-- /ko --> <!-- ko text: address().postcode --><!-- /ko --><br/> <!-- ko text: getCountryName(address().countryId) --><!-- /ko --><br/> <!-- ko text: address().telephone --><!-- /ko --><br/> <!-- ko foreach: { data: address().customAttributes, as: 'element' } --> <!-- ko foreach: { data: Object.keys(element), as: 'attribute' } --> <!-- ko text: element[attribute].value --><!-- /ko --> <!-- /ko --> <!-- /ko --> <!-- ko if: (address().isEditable()) --> <button type="button" class="action edit-address-link" data-bind="click: editAddress, visible: address().isEditable()"> <span data-bind="i18n: 'Edit'"></span> </button> <!-- /ko --> <button type="button" data-bind="click: selectAddress" class="action action-select-shipping-item"> <span data-bind="i18n: 'Ship Here'"></span> </button> </div>