diff --git a/src/lib/components/generic/ProfileCard.svelte b/src/lib/components/generic/ProfileCard.svelte index 52d7d28..38e2918 100644 --- a/src/lib/components/generic/ProfileCard.svelte +++ b/src/lib/components/generic/ProfileCard.svelte @@ -25,69 +25,51 @@ Do NOT pass in values that are not of the CURRENT USER or it will NOT work prope } let { cardUserGames, activeGame = $bindable(), user }: Props = $props(); - let dropdownVisible = $state(false); - let available_games = getAvailableGames(cardUserGames) + let availableGames = getAvailableGames(cardUserGames)
- - -