Skip to content

Commit

Permalink
conflicts solved
Browse files Browse the repository at this point in the history
  • Loading branch information
ail3ngrimaldi committed Jun 12, 2024
1 parent 84711b6 commit 5856cae
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ data:
{% endif %}
{% endfor %}

{% assign env = site.data.env %}

<script>
const $ = document.querySelector.bind(document),
$$ = document.querySelectorAll.bind(document);
Expand Down Expand Up @@ -205,9 +207,9 @@ questionButtons.forEach(button => {
});
// Airtable Connection
const apiKeyAirtable = '{AIRTABLE_API_KEY}';
const baseId = '{AIRTABLE_BASE_ID}';
const table = '{AIRTABLE_TABLE_ID}';
const apiKeyAirtable = '{{ env.AIRTABLE_API_KEY }}';
const baseId = '{{ env.BASE_ID }}';
const table = '{{ env.TABLE_ID }}';
const mailForm = document.getElementById('mail-form');
const mailButton = document.getElementById('mail-button');
Expand Down

0 comments on commit 5856cae

Please sign in to comment.