Skip to content

Commit

Permalink
fix(AgencyLanguages.tsx): use effect dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
koepferd committed Jun 27, 2024
1 parent 19ee44b commit 55d64fe
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ export const AgencyLanguages = ({ agencyId }: AgencyLanguagesProps) => {
.join(' | ')
);
})();
}, [agencyId, fixedLanguages, t]);
}, [
agencyId,
fixedLanguages,
settings?.multitenancyWithSingleDomainEnabled,
t
]);

return (
<Typography variant="body2" sx={{ color: 'info.light' }}>
Expand Down

0 comments on commit 55d64fe

Please sign in to comment.