Skip to content

Commit

Permalink
Remove unused vars.
Browse files Browse the repository at this point in the history
  • Loading branch information
elarsaks committed Aug 7, 2023
1 parent 1edda15 commit 86116eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/react_dashboard/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Background from "components/layout/Background";
import BlockDiv from "components/BlockDiv";
import Loader from "components/shared/Loader";
import Notification from "components/shared/Notification";
import React, { createContext, useContext, useEffect, useState } from "react";
import React, { createContext, useEffect, useState } from "react";
import styled from "styled-components";
import Wallet from "components/wallet/Wallet";
const AppWrapper = styled.div`
Expand Down Expand Up @@ -35,7 +35,7 @@ const WalletWrapperContainer = styled.div`
}
`;

export const MiningContext = React.createContext<MiningContextType>({
export const MiningContext = createContext<MiningContextType>({
mining: false,
setMining: () => {},
});
Expand Down

0 comments on commit 86116eb

Please sign in to comment.