You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -144,8 +144,12 @@ export default function AccountListSidebar({
144
144
data-tauri-drag-region
145
145
/>
146
146
)}
147
-
<div
147
+
<ul
148
148
ref={accountsListRef}
149
+
// Perhaps just "Profiles" would be more appropriate,
150
+
// because you can do other things with profiles in this list,
151
+
// but we have the same on Android.
152
+
aria-label={tx('switch_account')}
149
153
className={styles.accountList}
150
154
onScroll={updateHoverInfoPosition}
151
155
>
@@ -162,9 +166,11 @@ export default function AccountListSidebar({
162
166
muted={noficationSettings[id]?.muted||false}
163
167
/>
164
168
))}
165
-
<AddAccountButtononClick={onAddAccount}/>
169
+
<li>
170
+
<AddAccountButtononClick={onAddAccount}/>
171
+
</li>
166
172
</RovingTabindexProvider>
167
-
</div>
173
+
</ul>
168
174
{/* The condition is the same as in https://github.com/deltachat/deltachat-desktop/blob/63af023437ff1828a27de2da37bf94ab180ec528/src/renderer/contexts/KeybindingsContext.tsx#L26 */}
0 commit comments