this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix more bugs from learnings

+5 -7
+5 -7
src/pages/notifications.jsx
··· 145 145 <div class={`timeline-deck deck ${onlyMentions ? 'only-mentions' : ''}`}> 146 146 <header 147 147 hidden={hiddenUI} 148 - onClick={() => { 149 - scrollableRef.current?.scrollTo({ top: 0, behavior: 'smooth' }); 148 + onClick={(e) => { 149 + if (!e.target.closest('a, button')) { 150 + scrollableRef.current?.scrollTo({ top: 0, behavior: 'smooth' }); 151 + } 150 152 }} 151 153 > 152 154 <div class="header-grid"> 153 155 <div class="header-side"> 154 - <Menu 155 - portal={{ 156 - target: scrollableRef.current, 157 - }} 158 - /> 156 + <Menu /> 159 157 <Link to="/" class="button plain"> 160 158 <Icon icon="home" size="l" /> 161 159 </Link>