Skip to content

Commit b8bb37a

Browse files
authored
fix(ui): Fix removed open prop from SlideOverPanel (#105334)
1 parent 1817fb7 commit b8bb37a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/views/prevent/preventAI/manageReposPanel.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,12 @@ function ManageReposPanel({
108108
.filter(r => orgConfig.repo_overrides?.hasOwnProperty(r.externalId))
109109
.map(r => getRepoNameWithoutOrg(r.name));
110110

111+
if (collapsed) {
112+
return null;
113+
}
114+
111115
return (
112116
<SlideOverPanel
113-
open={!collapsed}
114117
position="right"
115118
ariaLabel="Settings Panel"
116119
data-test-id="manage-repos-panel"

0 commit comments

Comments
 (0)