We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9633011 commit e9117c5Copy full SHA for e9117c5
packages/frontend/src/components/screens/MainScreen/MainScreen.tsx
@@ -595,18 +595,22 @@ function AppIcons({
595
accountId: number | undefined
596
apps: T.Message[]
597
}) {
598
+ const tx = useTranslationFunction()
599
+
600
if (!accountId || !apps || apps.length === 0) {
601
return null
602
}
603
return (
- <div
604
+ <section
605
+ role='region'
606
+ aria-label={tx('webxdc_apps')}
607
className={styles.webxdcIcons}
608
data-testid='last-used-apps'
609
data-no-drag-region='true'
610
>
611
{apps.map(app => (
612
<AppIcon key={app.id} accountId={accountId} app={app} />
613
))}
- </div>
614
+ </section>
615
)
616
0 commit comments