From 1e716bf6d6a4721d77845fdfa09e2693c16ab68a Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Wed, 27 Sep 2023 15:44:47 +0200 Subject: [PATCH] Fix tests --- front/src/modules/users/components/Avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/modules/users/components/Avatar.tsx b/front/src/modules/users/components/Avatar.tsx index 1b9f0e7a8..a285dd1e1 100644 --- a/front/src/modules/users/components/Avatar.tsx +++ b/front/src/modules/users/components/Avatar.tsx @@ -83,7 +83,7 @@ const StyledAvatar = styled.div` }}; &:hover { - box-shadow: 0 0 0 4px ${theme.background.transparent.light}; + box-shadow: 0 0 0 4px ${({ theme }) => theme.background.transparent.light}; } `;