Skip to content

Commit

Permalink
fixup! Prepare demo
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Dec 13, 2024
1 parent 6ad8e1b commit d1d2638
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions e2e/browser/test-app/components/accessGrants/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
getSourceUrl,
deleteFile,
} from "@inrupt/solid-client";
import React, { useEffect, useState } from "react";
import React, { useState } from "react";

Check warning on line 43 in e2e/browser/test-app/components/accessGrants/index.tsx

View workflow job for this annotation

GitHub Actions / lint / lint

Unable to resolve path to module 'react'
import { useRouter } from "next/router";

Check warning on line 44 in e2e/browser/test-app/components/accessGrants/index.tsx

View workflow job for this annotation

GitHub Actions / lint / lint

Unable to resolve path to module 'next/router'

const session = getDefaultSession();
Expand Down Expand Up @@ -339,10 +339,12 @@ export default function AccessController({
</button>
</div>
<p>
Issued access request: <AccessCredential vc={accessRequest} />
Issued access request:{" "}
<AccessCredential vc={accessRequest} testId="access-request" />
</p>
<p>
Granted access: <AccessCredential vc={accessGrant} />
Granted access:{" "}
<AccessCredential vc={accessGrant} testId="access-grant" />
</p>

<button
Expand Down

0 comments on commit d1d2638

Please sign in to comment.