Skip to content

Commit

Permalink
Fixed react component
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronteamAAR committed Dec 6, 2022
1 parent f44cdae commit b70523e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import profilePic from "../public/images.png";
import Image from "next/image";
import Link from "next/link";
import { collection, query, onSnapshot, orderBy } from "firebase/firestore";
import { db } from "../pages/firebase";
import { db } from "./firebase"
import { v1 as uuidv1 } from "uuid";
import { useState, useEffect } from "react";
import swal from "sweetalert";
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pages/Talk.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import About from "../components/About";
import Image from "next/image";
import star from "../public/ssstar.svg";
import { collection, addDoc, query, onSnapshot, orderBy } from "firebase/firestore";
import {db} from '../pages/firebase';
import {db} from '../components/firebase'
import { v1 as uuidv1 } from "uuid";
import { useState, useEffect } from "react";
import swal from "sweetalert";
Expand Down

0 comments on commit b70523e

Please sign in to comment.