Skip to content

Commit

Permalink
remove unnecessary router
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-stone committed Oct 2, 2024
1 parent 6277fa7 commit 20c04f0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { LucideHome, LucidePlus } from "lucide-react";
import { useRouter } from "next/navigation";

export default function Home() {
const [feedsJSON, setFeedsJSON] = useState([]);
Expand All @@ -23,7 +22,6 @@ export default function Home() {
const [selector, setSelector] = useState("all_posts");
const [currentIndex, setCurrentIndex] = useState(0);
const [sidebarOpen, setSidebarOpen] = useState(false);
const router = useRouter();

async function parseRSSFeed(xmlString, url) {
let feed = {};
Expand Down

0 comments on commit 20c04f0

Please sign in to comment.