Skip to content

Commit

Permalink
Respond to review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maiertech committed Jul 29, 2024
1 parent 42ae56c commit b214ab7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions unime/src/routes/(app)/me/settings/about/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ interface Specification {
}

export const load = (async () => {
// https://github.com/impierce/openid4vc?tab=readme-ov-file
// https://github.com/impierce/openid4vc?tab=readme-ov-file#rust-library-for-openid-for-verifiable-credentials

const specifications: Specification[] = [
{
id: 'OID4VCI',
description: 'OpenID for Verifiable Credential Issuance',
version: 'Working Group Draft 13 published: 8 February 2024',
version: 'Working Group Draft 13 (published: 8 February 2024)',
url: 'https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0-13.html',
},
{
id: 'OID4VP',
description: 'OpenID for Verifiable Presentations',
version: 'Working Group Draft 20 published: 29 November 2023',
version: 'Working Group Draft 20 (published: 29 November 2023)',
url: 'https://openid.net/specs/openid-4-verifiable-presentations-1_0-20.html',
},
{
id: 'SIOPv2',
description: 'Self-Issued OpenID Provider v2',
version: 'Working Group Draft 13 published: 28 November 2023',
version: 'Working Group Draft 13 (published: 28 November 2023)',
url: 'https://openid.net/specs/openid-connect-self-issued-v2-1_0-13.html',
},
];
Expand Down
2 changes: 1 addition & 1 deletion unime/src/routes/(app)/me/settings/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<TopNavBar on:back={() => history.back()} title={$LL.SETTINGS.SUPPORT.ABOUT.NAVBAR_TITLE()} />

<div class="content-height flex flex-col bg-silver dark:bg-navy">
<h1 class="hidden">{$LL.SETTINGS.SUPPORT.ABOUT.TITLE}</h1>
<h1 class="sr-only">{$LL.SETTINGS.SUPPORT.ABOUT.TITLE()}</h1>
<div
class="flex flex-col items-center gap-6 pt-4 text-[13px]/[24px] font-normal text-slate-500 opacity-50 dark:text-slate-300"
>
Expand Down

0 comments on commit b214ab7

Please sign in to comment.