Skip to content

Commit c2a96a3

Browse files
committed
fix github links
1 parent 60b6443 commit c2a96a3

4 files changed

Lines changed: 7 additions & 18 deletions

File tree

.astro/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1776410303124
3+
"lastUpdateCheck": 1784056086572
44
}
55
}

.astro/types.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
/// <reference types="astro/client" />
2-
/// <reference path="content.d.ts" />

src/features/project-page/content/projectContent.js

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -203,28 +203,18 @@ export const projectPageContent = {
203203
href: "https://huggingface.co/datasets/usc-psi-lab/psi-data",
204204
external: true,
205205
},
206-
{
207-
label: "Code",
208-
href: "https://github.com/physical-superintelligence-lab/Psi0",
209-
external: true,
210-
},
211-
{
212-
label: "SIMPLE",
213-
href: "https://psi-lab.ai/SIMPLE/",
214-
external: true,
215-
},
216206
],
217207
repoStats: [
218208
{
219-
label: "Ψ₀ GitHub Stars",
220-
href: "https://github.com/physical-superintelligence-lab/Psi0/stargazers",
209+
label: "Code — Ψ₀ GitHub repository stars",
210+
href: "https://github.com/physical-superintelligence-lab/Psi0",
221211
repoOwner: "physical-superintelligence-lab",
222212
repoName: "Psi0",
223-
shortLabel: "Ψ₀",
213+
shortLabel: "Code",
224214
},
225215
{
226-
label: "SIMPLE GitHub Stars",
227-
href: "https://github.com/physical-superintelligence-lab/SIMPLE/stargazers",
216+
label: "SIMPLE — project page and GitHub stars",
217+
href: "https://psi-lab.ai/SIMPLE/",
228218
repoOwner: "physical-superintelligence-lab",
229219
repoName: "SIMPLE",
230220
shortLabel: "SIMPLE",

tests/project-page/content.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test("hero content is populated and action links are present", () => {
2828
assert.ok(hero.authors.length >= 3);
2929
assert.ok(hero.affiliations.length >= 1);
3030
assert.ok(hero.actions.length >= 2);
31-
assert.equal(hero.actions.some((action) => action.label === "SIMPLE"), true);
31+
assert.equal(hero.repoStats.some((repo) => repo.shortLabel === "SIMPLE"), true);
3232
assert.equal(hero.actions.some((action) => action.label === "Cite" && action.href === "#citation"), true);
3333
assert.equal(hero.repoStats.length, 2);
3434
for (const action of hero.actions) {

0 commit comments

Comments
 (0)