Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Sep 3, 2024
1 parent 7b8945a commit b7ba3ab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions next_app/src/pages/bounties.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import Layout from "@/components/layout";
import { useEffect } from "react";

export default function Bounties() {
window.location.href = "https://betteridea.dev/bounties";
useEffect(() => {
window.location.href = "https://betteridea.dev/bounties";

}, [])

return <main className="flex items-center text-center justify-center w-screen h-screen">
<div>Loading Bounties... <span className="inline-block animate-spin">⌛️</span></div>
Expand Down

0 comments on commit b7ba3ab

Please sign in to comment.