Skip to content

Commit

Permalink
error resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
parthgupta21 committed May 19, 2024
1 parent ffde3d3 commit 9f95308
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/socket/socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const app = express();
const server = http.createServer(app);
const io = new Server(server, {
cors: {
origin: ["http://localhost:3000"],
origin: ["https://lets-text-chat-app-api.vercel.app/"],
methods: ["GET", "POST"],
},
});
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/signup/SignUp.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Link } from "react-router-dom";
import GenderCheckbox from "./GenderCheckbox";
import GenderCheckbox from './GenderCheckbox';
import { useState } from "react";
import useSignup from "../../hooks/useSignup";
const SignUp = () => {
Expand Down

0 comments on commit 9f95308

Please sign in to comment.