Skip to content

Commit 7e91cd0

Browse files
committed
fix: use correct i18n key prefix
1 parent c7781c0 commit 7e91cd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/Compare/FacetSelector.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ const updateLiveRegion = debounce((message: string) => {
3131
3232
function selectAllFacet(category: string) {
3333
if (!isCategoryAllSelected(category)) {
34-
updateLiveRegion($t('selected_all_category_facets', { category }))
34+
updateLiveRegion($t('compare.facets.selected_all_category_facets', { category }))
3535
selectCategory(category)
3636
}
3737
}
3838
3939
function deselectAllFacet(category: string) {
4040
if (!isCategoryNoneSelected(category)) {
41-
updateLiveRegion($t('deselected_all_category_facets', { category }))
41+
updateLiveRegion($t('compare.facets.deselected_all_category_facets', { category }))
4242
deselectCategory(category)
4343
}
4444
}

0 commit comments

Comments
 (0)