Skip to content

Commit

Permalink
fix: wrong repo
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Sep 30, 2024
1 parent d613501 commit 81c3616
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/home/rendering/render-github-login-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function renderGitHubLoginButton() {
export function renderGitRevision() {
const gitRevision = document.getElementById("git-revision") as HTMLAnchorElement;
if (!gitRevision) throw new Error("Could not find element with id 'git-revision'");
gitRevision.href = `https://github.com/ubiquity/pay.ubq.fi/commit/${GIT_REVISION}`;
gitRevision.href = `https://github.com/ubiquity/work.ubq.fi/commit/${GIT_REVISION}`;
gitRevision.textContent = GIT_REVISION;
}

Expand Down
3 changes: 2 additions & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
><div id="filters" class="filters-container"></div><div id="authentication"></div
></div>
<div id="bottom-bar" class="toolbar"
><span class="mid"><a href="#" id="git-revision"></a></span><div id="filters-bottom" class="filters-container"></div><a href="https://dao.ubq.fi/devpool-flow" target="_blank"><button>FAQ</button></a></div
><span class="mid"><a href="#" id="git-revision"></a></span><div id="filters-bottom" class="filters-container"></div
><a href="https://dao.ubq.fi/devpool-flow" target="_blank"><button>FAQ</button></a></div
>
<script type="module" src="dist/src/home/home.js"></script>
</body>
Expand Down

0 comments on commit 81c3616

Please sign in to comment.