[READ-ONLY] Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

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

Fix profile search result double-navigation

Grace Kind (Mar 31, 2026, 4:12 PM -0500) cf6253a7 da6034ab

+3 -6
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.8.21", 3 + "version": "0.8.22", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf build && NODE_ENV=development eleventy --serve",
+2 -5
src/js/views/search.view.js
··· 148 148 > 149 149 ${avatarTemplate({ author: profile })} 150 150 <div class="profile-list-item-body"> 151 - <a 152 - class="profile-list-item-name" 153 - href="${linkToProfile(profile.handle)}" 154 - > 151 + <div class="profile-list-item-name"> 155 152 <span class="profile-list-item-display-name"> 156 153 ${displayName || profile.handle} 157 154 </span> 158 - </a> 155 + </div> 159 156 <div class="profile-list-item-handle">@${profile.handle}</div> 160 157 </div> 161 158 </div>`;