Index: src/wp-admin/includes/ajax-actions.php
===================================================================
--- src/wp-admin/includes/ajax-actions.php	(revision 40649)
+++ src/wp-admin/includes/ajax-actions.php	(working copy)
@@ -319,9 +319,6 @@
 		) );
 	} else {
 		if ( isset( $events['location'] ) ) {
-			// Send only the data that the client will use.
-			$events['location'] = $events['location']['description'];
-
 			// Store the location network-wide, so the user doesn't have to set it on each site.
 			update_user_option( $user_id, 'community-events-location', $events['location'], true );
 		}
Index: src/wp-admin/includes/dashboard.php
===================================================================
--- src/wp-admin/includes/dashboard.php	(revision 40649)
+++ src/wp-admin/includes/dashboard.php	(working copy)
@@ -1243,7 +1243,7 @@
 		<?php printf(
 			/* translators: %s is a placeholder for the name of a city. */
 			__( 'Attend an upcoming event near %s.' ),
-			'<strong>{{ data.location }}</strong>'
+			'<strong>{{ data.location.description }}</strong>'
 		); ?>
 	</script>
 
@@ -1280,7 +1280,7 @@
 			<?php printf(
 				/* translators: 1: the city the user searched for, 2: meetup organization documentation URL */
 				__( 'There aren&#8217;t any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize one</a>?' ),
-				'{{data.location}}',
+				'{{ data.location.description }}',
 				__( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' )
 			); ?>
 		</li>
