Skip to content

Commit

Permalink
Fix more eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
haoyangw committed Oct 31, 2024
1 parent 2980d38 commit 4bad1c3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions frontend/app/(authenticated)/verify-email/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ import {
} from "@/components/ui/card";
import { LoadingSpinner } from "@/components/ui/loading-spinner";
import { useUserStore } from "@/store/user/user-store-provider";
import { UNVERIFIED_TIER_ID } from "@/types/billing";

export const UNVERIFIED_TIER_ID = 4;
export const VERIFY_SUCCESS_DELAY = 1;
export const VERIFY_ERROR_DELAY = 5;

export default function VerifyEmail() {
export const VerifyEmail = () => {
const user = useUserStore((store) => store.user);
const router = useRouter();
const [isLoading, setIsLoading] = useState<boolean>(true);
Expand Down Expand Up @@ -162,4 +162,6 @@ export default function VerifyEmail() {
</Card>
</Box>
);
}
};

export default VerifyEmail;

0 comments on commit 4bad1c3

Please sign in to comment.