Change to use api url config for generating sample data.
Build and Deploy Web App / build-and-deploy (push) Successful in 17s Details

This commit is contained in:
andrewlalis 2025-08-22 21:52:38 -04:00
parent 7a74d5f17e
commit 2dae054950
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ function isDataValid() {
} }
function generateSampleData() { function generateSampleData() {
fetch('http://localhost:8080/api/sample-data', { fetch(import.meta.env.VITE_API_BASE_URL + '/sample-data', {
method: 'POST' method: 'POST'
}) })
} }