Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
fix join
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-Sadoulet committed May 24, 2022
1 parent e879bb9 commit 7854d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MeetingsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const columns: GridColDef[] = [
if (params.row.endTime !== null) {
return <ButtonLink link={`info/${params.row.id}`}>Info</ButtonLink>;
} else {
return <ButtonLink link={`live/${params.row.id}`}>Live</ButtonLink>;
return <ButtonLink link={`join/${params.row.id}`}>Live</ButtonLink>;
}
},
valueGetter: (params: GridValueGetterParams) => `${params.row.endTime}`,
Expand Down

0 comments on commit 7854d69

Please sign in to comment.