Skip to content

Commit

Permalink
chore: changed api to https
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaben-seth committed Sep 3, 2023
1 parent 2e1b350 commit 7cf2adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const currentOption = ref({
const fetchNextOption = async () => {
loading.value = true;
const request = await fetch('http://34.225.202.95:5200/choices');
const request = await fetch('https://mvp-api.chow.africa/choices');
const choice = await request.json();
if (choice) {
currentOption.value = choice.data.choice;
Expand Down

0 comments on commit 7cf2adc

Please sign in to comment.