Skip to content

Commit

Permalink
modified: script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nia-cloud-official committed Aug 4, 2024
1 parent ce5f15d commit d23b670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ async function handleSearch() {
resultsDiv.innerHTML = '';

try {
const response = await fetch(`http://https://collab-backend-jbkc.onrender.com/find-collaborators/${username}`);
const response = await fetch(`https://collab-backend-jbkc.onrender.com/find-collaborators/${username}`);
if (!response.ok) throw new Error('Network response was not ok');
const collaborators = await response.json();

Expand Down

0 comments on commit d23b670

Please sign in to comment.