From 9d1a5f8b81e081727f5819745684674ac0560008 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 4 Jul 2026 15:41:17 -0500 Subject: [PATCH] fix(contact): restore aligned = spacing in contact-info block --- views/blocks/contact-info/contact-info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/blocks/contact-info/contact-info.php b/views/blocks/contact-info/contact-info.php index 1db62f9..181b94f 100644 --- a/views/blocks/contact-info/contact-info.php +++ b/views/blocks/contact-info/contact-info.php @@ -13,8 +13,8 @@ namespace CWC; $info = get_field( 'contact_info', 'option' ); $address = $info['address'] ?? ''; -$email = $info['email'] ?? ''; -$phone = $info['phone'] ?? ''; +$email = $info['email'] ?? ''; +$phone = $info['phone'] ?? ''; $classes = 'contact-info'; $wrapper = blockWrapperAttributes( $classes, $is_preview );