Ver código fonte

removing placeholder

logicp 6 anos atrás
pai
commit
5fac393689
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/form.js

+ 2 - 2
src/form.js

@@ -107,7 +107,7 @@ class TextFields extends React.Component {
       guest: this.state.significantOther,
     })
 
-    const response = await fetch('/api/attendee', {
+    const response = await fetch('/attendee', {
       method: 'post',
       body: body,
       headers: new Headers({
@@ -123,7 +123,7 @@ class TextFields extends React.Component {
 
   fetchAttendees = async () => {
     let attendees
-    await fetch('/api/list', {
+    await fetch('/list', {
       method: 'get',
     }).then(data => {
       data.json().then(finalData => {