Skip to content

Commit

Permalink
Removed redundant typecast.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan0sz committed Jun 6, 2024
1 parent ab66877 commit be64fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function maybe_register_assets() {
[
'props' => [
'search_query' => get_search_query(),
'result_count' => intval( $wp_query->found_posts ),
'result_count' => $wp_query->found_posts,
],
]
);
Expand Down

0 comments on commit be64fe6

Please sign in to comment.