From 443b73439060d9f0e3b3a88dd6d7ae503debad59 Mon Sep 17 00:00:00 2001 From: dcodes05 Date: Tue, 19 Sep 2023 17:37:00 +0300 Subject: [PATCH] fix: rebase issues --- libs/oeth/shared/src/components/ApyHeader.tsx | 4 ++-- libs/oeth/shared/src/components/index.tsx | 1 + libs/oeth/shared/src/components/queries.graphql | 0 3 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 libs/oeth/shared/src/components/queries.graphql diff --git a/libs/oeth/shared/src/components/ApyHeader.tsx b/libs/oeth/shared/src/components/ApyHeader.tsx index e355ff58e..65ecd5595 100644 --- a/libs/oeth/shared/src/components/ApyHeader.tsx +++ b/libs/oeth/shared/src/components/ApyHeader.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import { useState } from 'react'; import { alpha, @@ -20,7 +20,7 @@ const days = [7, 30]; export function ApyHeader() { const intl = useIntl(); const [selectedPeriod, setSelectedPeriod] = useState(30); - const [anchorEl, setAnchorEl] = React.useState(null); + const [anchorEl, setAnchorEl] = useState(null); const { address } = useAccount(); const { data: oethBalance } = useBalance({ address, diff --git a/libs/oeth/shared/src/components/index.tsx b/libs/oeth/shared/src/components/index.tsx index cee219ad1..7b9dce4a4 100644 --- a/libs/oeth/shared/src/components/index.tsx +++ b/libs/oeth/shared/src/components/index.tsx @@ -1,2 +1,3 @@ export * from './ApyHeader'; export * from './AccountDetails'; +export * from './GasPopover'; diff --git a/libs/oeth/shared/src/components/queries.graphql b/libs/oeth/shared/src/components/queries.graphql deleted file mode 100644 index e69de29bb..000000000