Skip to content

Commit

Permalink
Fix for list view
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjameson committed Sep 24, 2024
1 parent 0153389 commit d76edc5
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 d76edc5

Please sign in to comment.