Skip to content

Commit ce464e8

Browse files
changed bottom boundary to outermost
1 parent 013f6c3 commit ce464e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/shared/components/challenge-listing/Listing/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function Listing({
9393
};
9494

9595
return (
96-
<div styleName="challengeCardContainer" id="challengeCardContainer">
96+
<div styleName="challengeCardContainer">
9797
{auth.user ? getBucket(BUCKETS.MY) : null}
9898
{getBucket(BUCKETS.OPEN_FOR_REGISTRATION)}
9999
{getBucket(BUCKETS.ONGOING)}

src/shared/components/challenge-listing/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export default function ChallengeListing(props) {
8686
}
8787

8888
return (
89-
<div styleName="ChallengeFiltersExample">
89+
<div styleName="ChallengeFiltersExample" id="challengeFilterContainer">
9090
<ChallengeFilters
9191
groupId={props.groupId}
9292
communityName={props.communityName}
@@ -130,7 +130,7 @@ export default function ChallengeListing(props) {
130130
{challengeCardContainer}
131131

132132
<div styleName="sidebar-container-desktop">
133-
<Sticky top={20} bottomBoundary="#challengeCardContainer">
133+
<Sticky top={20} bottomBoundary="#challengeFilterContainer">
134134
<Sidebar hideTcLinksInFooter={props.hideTcLinksInFooter} />
135135
</Sticky>
136136
</div>

0 commit comments

Comments
 (0)