Skip to content

Commit

Permalink
Merge branch 'main' into feat/new-plugin-system
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieSlome authored Oct 2, 2024
2 parents 6d539de + c641773 commit 356e356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/views/RepoList/Components/RepoOverview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export default function Repositories(props) {
};

const { project: org, name } = props?.data || {};
const cloneURL = `${import.meta.env.VITE_SERVER_URI}/${org}/${name}.git`;
const cloneURL = `${window.location.origin.toString()}/${org}/${name}.git`;

return (
<TableRow>
Expand Down

0 comments on commit 356e356

Please sign in to comment.