Skip to content

Commit e3c3d4a

Browse files
committed
fix: translate 'no apps match your criteria' error
1 parent b10f887 commit e3c3d4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/AppsList/AppsList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const AllApps = ({ label, apps }) => {
7171
return (
7272
<>
7373
<h1 className={styles.header}>{i18n.t('No apps found')}</h1>
74-
<p>No apps match your criteria</p>
74+
<p>{i18n.t('No apps match your criteria')}</p>
7575
</>
7676
)
7777
}

src/pages/AppHub/AppHub.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const AppsList = ({ apps, pager, onPageChange }) => {
7373
return (
7474
<>
7575
<h1 className={styles.header}>{i18n.t('No apps found')}</h1>
76-
<p>No apps match your criteria</p>
76+
<p>{i18n.t('No apps match your criteria')}</p>
7777
</>
7878
)
7979
}

0 commit comments

Comments
 (0)