Skip to content

Commit

Permalink
Merge pull request #261 from recogito/lwj/list-view-fix
Browse files Browse the repository at this point in the history
Fix for list view
  • Loading branch information
lwjameson authored Sep 25, 2024
2 parents 0aab2e1 + d76edc5 commit eaa1481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/dashboard-projects/List/ProjectEntry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const ProjectsEntry = (props: ProjectsEntryProps) => {
setJoinProjectOpen(false);
joinProject(supabase, id).then((resp) => {
if (resp) {
window.location.href = `./projects/${id}`;
window.location.pathname = `/${props.i18n.lang}/projects/${id}`;
} else {
props.onError(props.i18n.t['Something happened']);
}
Expand Down

0 comments on commit eaa1481

Please sign in to comment.