diff --git a/app/plus/components/PlusHomePage.tsx b/app/plus/components/PlusHomePage.tsx index 340588897..55c5ea0da 100644 --- a/app/plus/components/PlusHomePage.tsx +++ b/app/plus/components/PlusHomePage.tsx @@ -1,11 +1,11 @@ -import { Box, Center, Divider, Flex, Stack } from "@chakra-ui/layout"; +import { Box, Center, Divider, Flex, Heading, Stack } from "@chakra-ui/layout"; import { Alert, AlertDescription, AlertTitle, Progress, Radio, - RadioGroup, + RadioGroup } from "@chakra-ui/react"; import { Trans } from "@lingui/macro"; import { usePlusHomePage } from "app/plus/hooks/usePlusHomePage"; @@ -32,6 +32,18 @@ const PlusHomePage = () => { votingProgress, } = usePlusHomePage(); + if (!plusStatusData?.membershipTier) { + return + + + + Suggested players this month: + + {suggestionsData.sort((a,b) => a.createdAt.getTime() - b.createdAt.getTime()).map(suggestion => {getFullUsername(suggestion.suggestedUser)} (+{suggestion.tier}))} + + + } + return ( <>