mirror of
https://github.com/ivabus/www
synced 2024-11-10 08:35:16 +03:00
test production deployment
This commit is contained in:
parent
80ff59b8ce
commit
ad570a0ed4
|
@ -3,7 +3,7 @@ function Bottles() {
|
|||
const [isLoading, setLoading] = React.useState(true);
|
||||
|
||||
React.useEffect(() => {
|
||||
fetch("https://api.tea.xyz/v0/bottles")
|
||||
fetch("https://5ey2dx9k7l.execute-api.us-east-1.amazonaws.com/prod/v0/bottles")
|
||||
.then((res) => res.json())
|
||||
.then((res) => {
|
||||
setBottles(res);
|
||||
|
|
|
@ -3,7 +3,7 @@ function PackageBottles() {
|
|||
const [isLoading, setIsLoading] = React.useState(true);
|
||||
|
||||
React.useEffect(() => {
|
||||
const url = window.location.pathname.replace('/+', 'https://api.tea.xyz/v0/bottles/');
|
||||
const url = window.location.pathname.replace('/+', 'https://5ey2dx9k7l.execute-api.us-east-1.amazonaws.com/prod/v0/bottles/');
|
||||
fetch(url)
|
||||
.then((res) => res.json())
|
||||
.then((res) => {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
$('#stat-two').html('<div style="height: 400px"></div>');
|
||||
|
||||
try {
|
||||
fetch('https://api.tea.xyz/v0/signups')
|
||||
fetch('https://5ey2dx9k7l.execute-api.us-east-1.amazonaws.com/prod/v0/signups')
|
||||
.then(res => res.json())
|
||||
.then(res => {
|
||||
const signups = res.signups ? res.signups.toLocaleString() : ""
|
||||
|
|
Loading…
Reference in a new issue