Skip to content

Commit

Permalink
fix: rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodes05 committed Sep 19, 2023
1 parent f8b64df commit 443b734
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/oeth/shared/src/components/ApyHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from 'react';
import { useState } from 'react';

import {
alpha,
Expand All @@ -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 | HTMLElement>(null);
const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null);
const { address } = useAccount();
const { data: oethBalance } = useBalance({
address,
Expand Down
1 change: 1 addition & 0 deletions libs/oeth/shared/src/components/index.tsx
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './ApyHeader';
export * from './AccountDetails';
export * from './GasPopover';
Empty file.

0 comments on commit 443b734

Please sign in to comment.