diff --git a/src/Plugin/Block/SimpleSocialIconsBlock.php b/src/Plugin/Block/SimpleSocialIconsBlock.php
index 84ba4d7..4633c53 100644
--- a/src/Plugin/Block/SimpleSocialIconsBlock.php
+++ b/src/Plugin/Block/SimpleSocialIconsBlock.php
@@ -86,11 +86,10 @@ class SimpleSocialIconsBlock extends BlockBase {
       '#type' => 'checkbox',
       '#title' => $this->t('Use default style & ignore colors.'),
       '#description' => $this->t(''),
-      '#default_value' => isset($this->configuration['use_default_style_ignore_colors']) ? $this->configuration['use_default_style_ignore_colors'] : '',
+      '#default_value' => isset($this->configuration['use_default_style_ignore_colors']) ? $this->configuration['use_default_style_ignore_colors'] : '1',
       '#weight' => '0',
     );
     $form['contact_information'] = array(
-      // '#markup' => '<a href="#">hello</a>',
       '#markup' => $this->icons([]),
       '#weight' => '-100',
       '#title' => 'Preview',
@@ -375,10 +374,6 @@ class SimpleSocialIconsBlock extends BlockBase {
    */
   public function blockSubmit($form, FormStateInterface $form_state) {
 
-   /* echo '<pre>';
-    print_r($form_state->getValue('icon_placement'));
-    die;*/
-
     $this->configuration['icon_placement'] = $form_state->getValue('icon_placement');
     $this->configuration['size'] = $form_state->getValue('size');
     $this->configuration['font_size'] = $form_state->getValue('font_size');
@@ -662,6 +657,7 @@ class SimpleSocialIconsBlock extends BlockBase {
       }
       $icons .= '</ul>';
       return $icons;
+
     } else {
       /*icons are displaying vertical value as 1*/
       $icons = '<ul class="soc_ver">';
@@ -685,10 +681,6 @@ class SimpleSocialIconsBlock extends BlockBase {
       }
       $icons .= '</ul>';
       return $icons;
-
-
     }
-
   }
-
 }
