diff --git a/web/apps/photos/src/components/Sidebar/SubscriptionCard.tsx b/web/apps/photos/src/components/Sidebar/SubscriptionCard.tsx index 82f37eead0..8da968f22b 100644 --- a/web/apps/photos/src/components/Sidebar/SubscriptionCard.tsx +++ b/web/apps/photos/src/components/Sidebar/SubscriptionCard.tsx @@ -1,10 +1,6 @@ import type { ButtonishProps } from "@/new/photos/components/mui"; import { bytesInGB, formattedStorageByteSize } from "@/new/photos/utils/units"; -import { - FlexWrapper, - Overlay, - SpaceBetweenFlex, -} from "@ente/shared/components/Container"; +import { Overlay, SpaceBetweenFlex } from "@ente/shared/components/Container"; import ChevronRightIcon from "@mui/icons-material/ChevronRight"; import CircleIcon from "@mui/icons-material/Circle"; import { @@ -63,19 +59,19 @@ const BackgroundOverlay: React.FC = () => { ); }; -const ClickOverlay: React.FC = ({ onClick }) => { - return ( - - - - - - ); -}; +const ClickOverlay: React.FC = ({ onClick }) => ( + + + +); interface SubscriptionCardContentOverlayProps { userDetails: UserDetails;