localhost removed

This commit is contained in:
sumedh
2024-08-15 12:09:30 +05:30
parent aacf73151d
commit 7785a50641
2 changed files with 4 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ const submitForm = async () => {
formDataToSend.append('minChunkSizeToEmbed', formData.value.minChunkSizeToEmbed);
try {
const response = await axios.post('http://localhost:8082/fe-api/ks_git_repos/uploadRepo', formDataToSend);
const response = await axios.post('/fe-api/ks_git_repos/uploadRepo', formDataToSend);
console.log('Submit successful:', response.data);
toast.add({ severity: 'success', summary: 'Success', detail: 'Repository submitted successfully', life: 3000 });