We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ec04a commit 3f500b6Copy full SHA for 3f500b6
src/components/pages/apps.tsx
@@ -1,10 +1,15 @@
1
import { useNavigate } from "react-router";
2
import { useApps } from "@/hooks/useApps";
3
+import { useEffect } from "react";
4
5
const Apps = () => {
6
const navigate = useNavigate();
7
const { apps } = useApps();
8
9
+ useEffect(() => {
10
+ window.scrollTo(0, 0);
11
+ }, []);
12
+
13
return (
14
<div className="min-h-screen">
15
<div className="flex flex-col px-6">
0 commit comments