Skip to content

Commit

Permalink
fix: method being called wrongly
Browse files Browse the repository at this point in the history
Fixes the issue in class where after_otter_activation module was being called directly and not from the class method.
  • Loading branch information
HardeepAsrani authored Sep 4, 2024
1 parent 0f91b41 commit e29a3f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function setup_admin_hooks() {

add_action( 'enqueue_block_editor_assets', array( $this, 'add_fse_design_pack_notice' ) );
add_action( 'wp_ajax_neve_fse_dismiss_design_pack_notice', array( $this, 'remove_design_pack_notice' ) );
add_action( 'activated_plugin', 'after_otter_activation' );
add_action( 'activated_plugin', array( $this, 'after_otter_activation' ) );
add_action( 'wp_ajax_neve_fse_set_otter_ref', array( $this, 'set_otter_ref' ) );
}

Expand Down

0 comments on commit e29a3f7

Please sign in to comment.