Skip to content

Commit

Permalink
PR suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpiteri-BCGov committed Nov 20, 2024
1 parent e7e8ba0 commit b4e368a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions blocks/core/style-overrides/heading.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @since 1.3.0
*/
function register_heading_block_styles() {
function design_system_register_heading_block_styles() {
$block_name = 'core/heading';
$style_properties = array(
'name' => 'wp-block-heading-callout',
Expand All @@ -15,4 +15,4 @@ function register_heading_block_styles() {
register_block_style( $block_name, $style_properties );
}

add_action( 'init', 'register_heading_block_styles' );
add_action( 'init', 'design_system_register_heading_block_styles' );
4 changes: 2 additions & 2 deletions blocks/core/style-overrides/navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @since 1.3.0
*/
function register_navigation_block_styles() {
function design_system_register_navigation_block_styles() {
$block_name = 'core/navigation';
$style_properties = array(
'name' => 'wp-block-navigation-separator',
Expand All @@ -15,4 +15,4 @@ function register_navigation_block_styles() {
);
register_block_style( $block_name, $style_properties );
}
add_action( 'init', 'register_navigation_block_styles' );
add_action( 'init', 'design_system_register_navigation_block_styles' );

0 comments on commit b4e368a

Please sign in to comment.