Skip to content

Commit

Permalink
Social | Fix social connections list initial state feature check (#41151
Browse files Browse the repository at this point in the history
)
  • Loading branch information
manzoorwanijk authored Jan 20, 2025
1 parent d5ba310 commit 423e5ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Social | Fix feature check for social connections list initial state
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static function get_store_initial_state() {

return array(
'connectionData' => array(
'connections' => Connections::get_all_for_user(),
'connections' => self::has_feature_flag( 'connections-management' ) ? Connections::get_all_for_user() : array(),
),
'shareStatus' => $share_status,
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: bugfix

Social | Fix publicize error in the editor due to malformed connections data
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Fix publicize error in the editor due to malformed connections data

0 comments on commit 423e5ed

Please sign in to comment.