diff --git a/apps/vyper/src/app/app.tsx b/apps/vyper/src/app/app.tsx index 7b9d99c4a7..b14ee3a172 100644 --- a/apps/vyper/src/app/app.tsx +++ b/apps/vyper/src/app/app.tsx @@ -1,6 +1,6 @@ import React, {useState, useEffect} from 'react' -import {VyperCompilationOutput, normalizeContractPath, remixClient, toStandardOutput} from './utils' +import {remixClient} from './utils' import {CompilationResult} from '@remixproject/plugin-api' // Components diff --git a/apps/vyper/src/app/components/CompilerButton.tsx b/apps/vyper/src/app/components/CompilerButton.tsx index d91aa49a2c..452cfcf784 100644 --- a/apps/vyper/src/app/components/CompilerButton.tsx +++ b/apps/vyper/src/app/components/CompilerButton.tsx @@ -2,7 +2,6 @@ import React, { Fragment, useState } from 'react' import {isVyper, compile, toStandardOutput, isCompilationError, remixClient, normalizeContractPath} from '../utils' import Button from 'react-bootstrap/Button' import _ from 'lodash' -import { runtime } from 'webpack' interface Props { compilerUrl: string