Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpin committed Apr 13, 2023
1 parent 303b517 commit 6079a4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react/features/recent-list/components/AbstractRecentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ export default class AbstractRecentList<P extends IProps> extends AbstractPage<P
aria-label = { t('welcomepage.recentList') }
className = 'meetings-list-empty'
role = 'region'
style = { styles.emptyListContainer }>
style = { styles.emptyListContainer as any }>
<Text // @ts-ignore
className = 'description'
id = { descriptionId }
style = { styles.emptyListText }>
style = { styles.emptyListText as any }>
{ t('welcomepage.recentListEmpty') }
</Text>
</Container>
Expand Down

0 comments on commit 6079a4e

Please sign in to comment.