Skip to content

Commit

Permalink
🚨 Fix Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
piyush-eon committed Aug 29, 2021
1 parent f787082 commit ab2d6ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CoinInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { CryptoState } from "../CryptoContext";
const CoinInfo = ({ coin }) => {
const [historicData, setHistoricData] = useState();
const [days, setDays] = useState(1);
const { currency, symbol } = CryptoState();
const { currency } = CryptoState();

const useStyles = makeStyles((theme) => ({
container: {
Expand Down
1 change: 0 additions & 1 deletion src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
makeStyles,
ThemeProvider,
} from "@material-ui/core/styles";
import { useState } from "react";
import { useHistory } from "react-router-dom";
import { CryptoState } from "../CryptoContext";

Expand Down

1 comment on commit ab2d6ed

@Krshnna
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SelectInput.js:444 MUI: You have provided an out-of-range value INR for the select component.
Consider providing a value that matches one of the available options or ''.
The available values are "".

why i am getting this error pls help me.
I am not able to come out of this and rn i am completely stuck

Please sign in to comment.