summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-03-07 13:20:38 +0100
committerYuval Adam <_@yuv.al>2025-03-07 13:20:38 +0100
commit14f4eafbe2011c12650bf6717028e99da21d1805 (patch)
treec385b42b912c49d1cf4e1dff8d3a1ced8d20f569 /src/pages
parent1257cd965f611ccac41398c5b64eb333dc2dc57a (diff)
Remove currentPage propredesign
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/HomePage.tsx2
-rw-r--r--src/pages/chart/ChartPage.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index ab977aa..c5fa257 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -369,7 +369,7 @@ const HomePage = () => {
)
}
- <Footer currentPage="home" />
+ <Footer />
</div >
);
};
diff --git a/src/pages/chart/ChartPage.tsx b/src/pages/chart/ChartPage.tsx
index 7f1569d..c0526c0 100644
--- a/src/pages/chart/ChartPage.tsx
+++ b/src/pages/chart/ChartPage.tsx
@@ -152,7 +152,7 @@ const ChartPage = () => {
<Link to="/">Back to Game</Link>
</div>
- <Footer currentPage="chart" />
+ <Footer />
</div>
);
};