Skip to content

Commit

Permalink
build updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv160410116084 committed Sep 25, 2024
1 parent 4f6d6cf commit 5662085
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion front-end/app/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<script type="module" crossorigin src="/assets/index-yYgUrnpQ.js"></script>
<script type="module" crossorigin src="/assets/index-ePpz4ZP7.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-mpS6mMjR.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion front-end/app/src/Login/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Login() {
// alert(query)
e.preventDefault()
console.log(userName,password,email)
let data = await fetch('http://'+window.location.host+':3000/api/user/login',{
let data = await fetch('https://'+window.location.host+':3000/api/user/login',{

method: 'POST',
headers:{
Expand Down
2 changes: 1 addition & 1 deletion front-end/app/src/Signup/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function Signup(props) {
// })

// })
let data = await fetch('http://'+window.location.host+':3000/api/user',{
let data = await fetch('https://'+window.location.host+':3000/api/user',{
method: 'POST',
headers:{
'Content-Type':'application/json',
Expand Down
2 changes: 1 addition & 1 deletion front-end/app/src/Users/UserList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function UserList(props) {
setTab(2)
setIsLoading(true)

fetch('http://'+window.location.host+':3000/api/user?'+ new URLSearchParams({
fetch('https://'+window.location.host+':3000/api/user?'+ new URLSearchParams({
skip:0,
limit:10
}),{
Expand Down

0 comments on commit 5662085

Please sign in to comment.