Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Fontanier committed Apr 3, 2024
1 parent afac327 commit 551c5ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion front/pages/api/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function handleMembershipInvite(

if (!m) {
await createAndLogMembership({
workspace: workspace,
workspace,
userId: user.id,
role: membershipInvite.initialRole,
});
Expand Down
2 changes: 1 addition & 1 deletion front/pages/w/[wId]/join.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const getServerSideProps = makeGetServerSidePropsRequirementsWrapper({
return {
props: {
onboardingType: onboardingType,
workspace: workspace,
workspace,
signUpCallbackUrl: signUpCallbackUrl,
baseUrl: URL,
gaTrackingId: GA_TRACKING_ID,
Expand Down
2 changes: 1 addition & 1 deletion front/poke/temporal/activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ export async function deleteMembersActivity({
});

const memberships = await MembershipResource.getLatestMemberships({
workspace: workspace,
workspace,
transaction: t,
});

Expand Down

0 comments on commit 551c5ef

Please sign in to comment.