Add team Id to hash url (#2803)

This commit is contained in:
sean-brydon
2022-05-18 08:59:50 -06:00
committed by zomars
parent 25c550de3a
commit 80954aa866
+2 -1
View File
@@ -332,7 +332,7 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
fetchTokens();
!hashedUrl && setHashedUrl(generateHashedLink(eventType.users[0].id));
!hashedUrl && setHashedUrl(generateHashedLink(eventType.users[0]?.id ?? team?.id));
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
@@ -2182,6 +2182,7 @@ export const getServerSideProps = async (context: GetServerSidePropsContext) =>
successRedirectUrl: true,
team: {
select: {
id: true,
slug: true,
members: {
where: {