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
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ npm-debug.log
yarn-error.log
yarn-debug.log
yarn.lock
package-lock.json

packages/react-devtools-core/node_modules
packages/react-devtools-core/yarn.lock
packages/react-devtools-core/package-lock.json
Expand Down
Binary file removed client/src/assets/1.jpg
Binary file not shown.
Binary file added client/src/assets/Screenshot 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/assets/Screenshot 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/assets/Screenshot 3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/src/assets/signup.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/assets/signup1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion client/src/components/Auth.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ const Auth = () => {

const { username, password, phoneNumber, avatarURL } = form;

const URL = 'http://localhost:4000/auth';
// const URL = 'http://localhost:4000/auth';
const URL = 'https://chick-chat-server.vercel.app/auth'


const { data: { token, userId, hashedPassword, fullName } } = await axios.post(`${URL}/${isSignup ? 'signup' : 'login'}`, {
Expand Down
Loading