This commit is contained in:
Kalle
2022-02-24 22:13:01 +02:00
parent fb4b93913e
commit 29d6bbeb98
2 changed files with 1 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ export function GroupCard({
}) {
const fetcher = useFetcher();
const buttonText = (ranked: boolean = false) => {
const buttonText = (ranked = false) => {
switch (action) {
case "LEAVE_GROUP":
return "Leave group";

View File

@@ -23,7 +23,6 @@ import {
import * as LFGGroup from "~/models/LFGGroup.server";
import { Button } from "~/components/Button";
import { useUser } from "~/hooks/common";
import { LfgGroupType } from "@prisma/client";
import { filterExpiredGroups } from "~/core/play/utils";
export const links: LinksFunction = () => {