From 0b336f647f47aa889e2189f6a85bea84fea76eec Mon Sep 17 00:00:00 2001 From: Shekhar Wagh Date: Fri, 3 Jan 2025 18:23:44 +0530 Subject: [PATCH] add loop block --- inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php b/inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php index c070974e..fe65c6a1 100644 --- a/inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php +++ b/inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php @@ -15,6 +15,7 @@ public static function register_blocks(): void { foreach ( $data_source_configs as $config ) { $data_source = GoogleSheetsDataSource::from_array( $config ); self::register_block_for_google_sheets_data_source( $data_source ); + self::register_loop_block_for_google_sheets_data_source( $data_source ); } } public static function register_block_for_google_sheets_data_source( GoogleSheetsDataSource $data_source, array $block_overrides = [] ): void {