We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6b8275 commit e3e0a26Copy full SHA for e3e0a26
src/app/flutter/page.tsx
@@ -40,7 +40,7 @@ export default function AboutMe() {
40
useEffect(() => {
41
setExamples(originalData.slice(visibleCount, perPage));
42
setVisibleCount(perPage);
43
- }, [perPage, visibleCount]);
+ }, []);
44
45
const handleSearch = useDebouncedCallback(async (query: string) => {
46
if (query.length) {
src/app/page.tsx
@@ -84,7 +84,7 @@ export default function Home() {
84
<span
85
style={{
86
color:
87
- "light-dark(var(--mantine-color-gray-5), var(--mantine-color-blue-2))",
+ "light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-2))",
88
}}
89
>
90
scalable code.
0 commit comments