From 75907f6c18d1cfc4136235236cff92a04dbcc4a8 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Thu, 23 Jun 2022 12:40:32 -0500 Subject: [PATCH] Join group button --- web/pages/group/[...slugs]/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/web/pages/group/[...slugs]/index.tsx b/web/pages/group/[...slugs]/index.tsx index 9ca1e1fa..4899f57e 100644 --- a/web/pages/group/[...slugs]/index.tsx +++ b/web/pages/group/[...slugs]/index.tsx @@ -14,7 +14,7 @@ import { } from 'web/lib/firebase/groups' import { Row } from 'web/components/layout/row' import { UserLink } from 'web/components/user-page' -import { getUser, User } from 'web/lib/firebase/users' +import { firebaseLogin, getUser, User } from 'web/lib/firebase/users' import { Spacer } from 'web/components/layout/spacer' import { Col } from 'web/components/layout/col' import { useUser } from 'web/hooks/use-user' @@ -541,8 +541,11 @@ function JoinGroupButton(props: { } return (
-
)