fix Bookings Teams filter shows double label (#14239)

This commit is contained in:
Shyam Raghuwanshi
2024-04-01 18:00:04 +05:30
committed by GitHub
parent fe62f9c6de
commit 7a525e476a
@@ -51,7 +51,7 @@ export const TeamsFilter = ({
if (selectedTeamsNames) {
checkedOptions.push(...selectedTeamsNames);
}
return `${t("team")}: ${checkedOptions.join(",")}`;
return `${checkedOptions.join(",")}`;
}
if (users) {
return t("yours");