From 044a3436b00bb5e71db47fcab25df589f93c36bd Mon Sep 17 00:00:00 2001 From: Jennifer Echenim Date: Thu, 30 May 2024 13:43:57 +0100 Subject: [PATCH] Fix import in 500.tsx and remove unused import --- contracts/src/bridge/frontend/pages/500.tsx | 2 +- contracts/src/bridge/frontend/src/types/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/src/bridge/frontend/pages/500.tsx b/contracts/src/bridge/frontend/pages/500.tsx index 2f3826812c..1c33a4e787 100644 --- a/contracts/src/bridge/frontend/pages/500.tsx +++ b/contracts/src/bridge/frontend/pages/500.tsx @@ -1,4 +1,4 @@ -import { ErrorType } from "@/src/types/interfaces"; +import { ErrorType } from "@/src/types"; import Error from "./_error"; function Custom500Error({ diff --git a/contracts/src/bridge/frontend/src/types/index.ts b/contracts/src/bridge/frontend/src/types/index.ts index f3f21e2415..6092f5b9bd 100644 --- a/contracts/src/bridge/frontend/src/types/index.ts +++ b/contracts/src/bridge/frontend/src/types/index.ts @@ -1,5 +1,4 @@ import React from "react"; -import { ethers } from "ethers"; export interface SeoProps { title: string;