We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d74889 commit 5207d0aCopy full SHA for 5207d0a
src/components/Contact.jsx
@@ -10,8 +10,9 @@ import {
10
import Airtable from "airtable";
11
12
const SECRET_API_TOKEN = process.env.REACT_APP_AIRTABLE_SECRET_API_TOKEN;
13
+const BASE_ID = process.env.REACT_APP_BASE_ID;
14
-const base = new Airtable({ apiKey: SECRET_API_TOKEN }).base("appEMnQzGawihl0o1");
15
+const base = new Airtable({ apiKey: SECRET_API_TOKEN }).base(BASE_ID);
16
17
const Contact = () => {
18
const [data, setData] = useState({
0 commit comments