Skip to content

Commit

Permalink
gg
Browse files Browse the repository at this point in the history
  • Loading branch information
upayanmazumder committed Nov 29, 2024
1 parent 13d2bde commit 69b2b30
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/app/auth/connect/page.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
"use client"
"use client";

import React, { useEffect } from "react";
import { getAuth } from "firebase/auth";
import { auth } from "../../../../shared/firebase"; // Adjust path as needed

const Connect = () => {
useEffect(() => {
const authenticate = async () => {
try {
const auth = getAuth();
const user = auth.currentUser;

if (user) {
Expand Down

0 comments on commit 69b2b30

Please sign in to comment.