Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions firebase-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[debug] [2024-10-17T08:46:42.713Z] ----------------------------------------------------------------------
[debug] [2024-10-17T08:46:42.717Z] Command: C:\Program Files\nodejs\node.exe C:\Users\ayush\AppData\Roaming\npm\node_modules\firebase-tools\lib\bin\firebase.js init
[debug] [2024-10-17T08:46:42.718Z] CLI Version: 13.22.1
[debug] [2024-10-17T08:46:42.718Z] Platform: win32
[debug] [2024-10-17T08:46:42.719Z] Node Version: v20.15.0
[debug] [2024-10-17T08:46:42.719Z] Time: Thu Oct 17 2024 14:16:42 GMT+0530 (India Standard Time)
[debug] [2024-10-17T08:46:42.719Z] ----------------------------------------------------------------------
[debug]
[debug] [2024-10-17T08:46:42.733Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
[debug] [2024-10-17T08:46:42.734Z] > authorizing via signed-in user (ayusharyan686@gmail.com)
[info]
######## #### ######## ######## ######## ### ###### ########
## ## ## ## ## ## ## ## ## ## ##
###### ## ######## ###### ######## ######### ###### ######
## ## ## ## ## ## ## ## ## ## ##
## #### ## ## ######## ######## ## ## ###### ########

You're about to initialize a Firebase project in this directory:

C:\Users\ayush\Desktop\GSoC\qr-code-generator2

171 changes: 143 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@testing-library/user-event": "^13.5.0",
"build": "^0.1.4",
"dotenv": "^16.4.5",
"firebase": "^10.14.0",
"firebase": "^10.14.1",
"framer-motion": "^11.3.24",
"qr-code-styling": "^1.6.0-rc.1",
"qr-scanner": "^1.4.2",
Expand Down
3 changes: 0 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { Toaster } from "react-hot-toast";
import ProtectedRoute from "./components/ProtectedRoute";
import NotFoundPage from "./components/Error404";

import ScrollButton from "./components/ScrollButton"; // Import the ScrollButton

function BackgroundWrapper({ children }) {
const location = useLocation();

Expand Down Expand Up @@ -138,7 +136,6 @@ export default function App() {
/>
<Route path="*" element={<NotFoundPage />} />
</Routes>
<ScrollButton />
</BackgroundWrapper>
<Toaster />
</Router>
Expand Down
9 changes: 0 additions & 9 deletions src/components/ScrollButton.css

This file was deleted.

50 changes: 0 additions & 50 deletions src/components/ScrollButton.js

This file was deleted.

4 changes: 2 additions & 2 deletions src/firebase.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const firebaseConfig = {
messagingSenderId: process.env.REACT_APP_FIREBASE_MESSAGING_SENDER_ID,
appId: process.env.REACT_APP_FIREBASE_APP_ID,
measurementId: process.env.REACT_APP_FIREBASE_MEASUREMENT_ID
};

};

const app = initializeApp(firebaseConfig);
const auth = getAuth(app);
Expand Down