Skip to content

Commit cdb50f2

Browse files
committed
sadly repo.hash is a different hash
1 parent a976b9b commit cdb50f2

File tree

1 file changed

+2
-28
lines changed

1 file changed

+2
-28
lines changed

app/pages/system/UpdatePage.tsx

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
import { differenceInMinutes } from 'date-fns'
10-
import { useMemo, type SVGProps } from 'react'
10+
import { useMemo } from 'react'
1111
import * as R from 'remeda'
1212
import { lt as semverLt } from 'semver'
1313

@@ -225,17 +225,7 @@ export default function UpdatePage() {
225225
</div>
226226
<div className="flex flex-col items-start gap-0.5 pr-2 @md:items-end">
227227
<DateTime date={repo.timeCreated} />
228-
<div className="flex items-center gap-0.5">
229-
<HashIcon className="text-quaternary" aria-hidden />
230-
<a
231-
href={`https://github.com/oxidecomputer/omicron/commits/${repo.hash}`}
232-
className="link-with-underline text-default"
233-
target="_blank"
234-
rel="noopener noreferrer"
235-
>
236-
{repo.hash.substring(0, 7)}
237-
</a>
238-
</div>
228+
<div>{repo.fileName}</div>
239229
</div>
240230
</div>
241231
<div className="border-secondary flex items-center justify-center self-stretch border-l">
@@ -281,19 +271,3 @@ export default function UpdatePage() {
281271
</>
282272
)
283273
}
284-
285-
const HashIcon = (props: SVGProps<SVGSVGElement>) => (
286-
<svg
287-
width="12"
288-
height="12"
289-
viewBox="0 0 12 12"
290-
fill="none"
291-
xmlns="http://www.w3.org/2000/svg"
292-
{...props}
293-
>
294-
<path
295-
d="M8.8338 0.967163L9.16681 1.03357C9.34546 1.06923 9.46113 1.24262 9.4256 1.42126L9.00958 3.50037H10.1707C10.3529 3.5005 10.5008 3.64827 10.5008 3.83044V4.17029C10.5008 4.35245 10.3528 4.50023 10.1707 4.50037H8.81036L8.20978 7.50037H9.17072C9.35285 7.5005 9.50079 7.64827 9.50079 7.83044V8.17029C9.50079 8.35245 9.35285 8.50023 9.17072 8.50037H8.01056L7.55548 10.7748C7.51965 10.9533 7.34537 11.0691 7.16681 11.0336L6.8338 10.9672C6.65508 10.9314 6.53926 10.7572 6.57501 10.5785L6.99103 8.50037H4.01056L3.55548 10.7748C3.51965 10.9533 3.34537 11.0691 3.16681 11.0336L2.8338 10.9672C2.65508 10.9314 2.53926 10.7572 2.57501 10.5785L2.99103 8.50037H1.83087C1.64862 8.50037 1.5008 8.35254 1.50079 8.17029V7.83044C1.50079 7.64819 1.64862 7.50037 1.83087 7.50037H3.19025L3.79083 4.50037H2.83087C2.64862 4.50037 2.5008 4.35254 2.50079 4.17029V3.83044C2.50079 3.64819 2.64862 3.50037 2.83087 3.50037H3.99005L4.44513 1.22595C4.48085 1.04733 4.65516 0.931576 4.8338 0.967163L5.16681 1.03357C5.34546 1.06923 5.46113 1.24262 5.4256 1.42126L5.00958 3.50037H7.99005L8.44513 1.22595C8.48085 1.04733 8.65516 0.931576 8.8338 0.967163ZM4.81036 4.50037L4.20978 7.50037H7.19025L7.79083 4.50037H4.81036Z"
296-
fill="currentColor"
297-
/>
298-
</svg>
299-
)

0 commit comments

Comments
 (0)