diff --git a/layout_builder_styles.module b/layout_builder_styles.module
index 99d83f1..2afa323 100644
--- a/layout_builder_styles.module
+++ b/layout_builder_styles.module
@@ -16,6 +16,13 @@ use Drupal\layout_builder_styles\LayoutBuilderStyleGroupInterface;
  */
 function layout_builder_styles_form_alter(&$form, FormStateInterface $formState) {
   if ($form['#form_id'] === 'layout_builder_add_block' || $form['#form_id'] === 'layout_builder_update_block') {
+    // If using patch from https://www.drupal.org/project/drupal/issues/2999491
+    // We need to ignore the first form that is presented with actions to create
+    // inline or reusable blocks.
+    if (isset($form['actions']['inline_block']) && isset($form['actions']['reusable_block'])) {
+      return;
+    }
+    
     /** @var \Drupal\layout_builder\Form\ConfigureBlockFormBase $formObject */
     $formObject = $formState->getFormObject();
 
