Skip to content

Commit

Permalink
try new ip
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHi committed Nov 7, 2023
1 parent 3a62567 commit f6e266d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import RoadsideObject from '../components/RoadsideObject.vue';
import type { RoadsideObjectModel } from '../model/RoadsideObjectModel'
import { ref } from 'vue';
const randomObjectUrl = 'http://localhost:9007/random-object'; // Replace with your API endpoint URL
const randomObjectUrl = 'http://0.0.0.0:9007/random-object'; // Replace with your API endpoint URL
const roadsideObject = ref<RoadsideObjectModel | undefined>(undefined)
fetchRoadsideObject().then((r) => roadsideObject.value = r)
Expand Down

0 comments on commit f6e266d

Please sign in to comment.