Skip to content

Commit e3e0a26

Browse files
committed
Fix issue
1 parent d6b8275 commit e3e0a26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/app/flutter/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default function AboutMe() {
4040
useEffect(() => {
4141
setExamples(originalData.slice(visibleCount, perPage));
4242
setVisibleCount(perPage);
43-
}, [perPage, visibleCount]);
43+
}, []);
4444

4545
const handleSearch = useDebouncedCallback(async (query: string) => {
4646
if (query.length) {

Diff for: src/app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function Home() {
8484
<span
8585
style={{
8686
color:
87-
"light-dark(var(--mantine-color-gray-5), var(--mantine-color-blue-2))",
87+
"light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-2))",
8888
}}
8989
>
9090
scalable code.

0 commit comments

Comments
 (0)