Increase the size and boldness of the timer

This commit is contained in:
Tiago Ribeiro
2024-08-28 14:58:07 +01:00
parent 6fd0b7aef3
commit af9462398a
2 changed files with 65 additions and 66 deletions

View File

@@ -437,7 +437,6 @@ export default function MasterCorporateDashboard({ user }: Props) {
const { data: stats } = useFilterRecordsByUser<Stat[]>();
const { users, reload } = useUsers();
const { codes } = useCodes(user.id);
const { groups } = useGroups({ admin: user.id, userType: user.type });
const { balance } = useUserBalance();
@@ -447,9 +446,9 @@ export default function MasterCorporateDashboard({ user }: Props) {
),
], [groups, user.id]);
const corporateUserGroups = [
const corporateUserGroups = useMemo(() => [
...new Set(groups.flatMap((g) => g.participants)),
];
], [groups])
const {
assignments,