mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-23 05:09:51 -05:00
Fix missing translation for has kids
This commit is contained in:
@@ -307,19 +307,19 @@ export function DesktopFilters(props: {
|
||||
<DropdownMenu
|
||||
items={[
|
||||
{
|
||||
name: hasKidsLabels.no_preference.name,
|
||||
name: t("profile.has_kids.no_preference", hasKidsLabels.no_preference.name),
|
||||
onClick: () => {
|
||||
updateFilter({has_kids: hasKidsLabels.no_preference.value})
|
||||
},
|
||||
},
|
||||
{
|
||||
name: hasKidsLabels.doesnt_have_kids.name,
|
||||
name: t("profile.has_kids.doesnt_have_kids", hasKidsLabels.doesnt_have_kids.name),
|
||||
onClick: () => {
|
||||
updateFilter({has_kids: hasKidsLabels.doesnt_have_kids.value})
|
||||
},
|
||||
},
|
||||
{
|
||||
name: hasKidsLabels.has_kids.name,
|
||||
name: t("profile.has_kids.has_kids", hasKidsLabels.has_kids.name),
|
||||
onClick: () => {
|
||||
updateFilter({has_kids: hasKidsLabels.has_kids.value})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user