Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix code review issues #498

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "explorer-dapp",
"description": "Itheum Explorer is a DApp for the public to explore and visualize data within the Itheum protocol",
"version": "1.20.6",
"version": "1.20.0",
"author": "Itheum",
"license": "GPL-3.0-or-later",
"dependencies": {
Expand Down Expand Up @@ -57,7 +57,7 @@
"react-slick": "0.30.2",
"react-vertical-timeline-component": "3.6.0",
"react-zoom-pan-pinch": "3.4.4",
"recharts": "^2.12.7",
"recharts": "2.12.7",
"simplex-noise": "4.0.1",
"slick-carousel": "1.8.1",
"tailwind-merge": "2.3.0",
Expand Down
3 changes: 0 additions & 3 deletions src/components/Layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import {
} from "../../libComponents/NavigationMenu";
import { useAccountStore } from "../../store/account";
import { BitzDropdown } from "../BitzShortcuts/BitzShortcuts";
// import { PathwaysModal } from "../PathwaysModal/PathwaysModal";
import { PlayBitzModal } from "../PlayBitzModal/PlayBitzModal";

export const Navbar = () => {
Expand All @@ -42,8 +41,6 @@ export const Navbar = () => {
const isLoggedInMvx = useGetIsLoggedIn();
const { address: addressMvx } = useGetAccount();
const bitzBalance = useAccountStore((state: any) => state.bitzBalance);

// const [showPathwaysModel, setShowPathwaysModel] = useState<boolean>(false);
const [showPlayBitzModel, setShowPlayBitzModel] = useState<boolean>(false);

return (
Expand Down
8 changes: 4 additions & 4 deletions src/pages/GamerPassport/GamerPassport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export const GamerPassport = () => {
const [step3Passed, setStep3Passed] = useState<boolean>(false);

useEffect(() => {
// window.scrollTo({
// top: 0,
// behavior: "smooth",
// });
window.scrollTo({
top: 0,
behavior: "smooth",
});

async function getDataAndInitGraphData() {
const dataAggregated = await getAggregatedAnalyticsData();
Expand Down