Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau committed Nov 21, 2024
1 parent 020c1bb commit 5aa569a
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions demo/web-to-web-p2p/src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
import React, {
ReactElement,
ReactNode,
useCallback,
useEffect,
useState,
} from 'react';
import React, { ReactElement, useCallback, useEffect, useState } from 'react';
import { createRoot } from 'react-dom/client';
import * as Comlink from 'comlink';
import {
Prover as TProver,
Verifier as TVerifier,
Presentation as TPresentation,
Commit,
NotaryServer,
Transcript,
} from 'tlsn-js';
import { PresentationJSON } from 'tlsn-js/build/types';
import { Prover as TProver, Verifier as TVerifier, Commit } from 'tlsn-js';
import './app.scss';

const { init, Prover, Presentation, Verifier }: any = Comlink.wrap(
const { init, Prover, Verifier }: any = Comlink.wrap(
new Worker(new URL('./worker.ts', import.meta.url)),
);

Expand Down

0 comments on commit 5aa569a

Please sign in to comment.