mirror of
https://github.com/ivabus/www
synced 2024-11-22 01:15:06 +03:00
Merge pull request #373 from teaxyz/v0-adoption-test
adopt app.tea.xyz/v0/*
This commit is contained in:
commit
c320ba8f2c
4 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ function Bottles() {
|
|||
const [isLoading, setLoading] = React.useState(true);
|
||||
|
||||
React.useEffect(() => {
|
||||
fetch("https://app.tea.xyz/api/bottles")
|
||||
fetch("https://app.tea.xyz/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://app.tea.xyz/api/bottles/');
|
||||
const url = window.location.pathname.replace('/+', 'https://app.tea.xyz/v0/bottles/');
|
||||
fetch(url)
|
||||
.then((res) => res.json())
|
||||
.then((res) => {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -14,7 +14,7 @@
|
|||
$('#stat-two').html('<div style="height: 400px"></div>');
|
||||
|
||||
try {
|
||||
fetch('https://app.tea.xyz/api/signups')
|
||||
fetch('https://app.tea.xyz/v0/signups')
|
||||
.then(res => res.json())
|
||||
.then(res => {
|
||||
const signups = res.signups ? res.signups.toLocaleString() : "";
|
||||
|
|
Loading…
Reference in a new issue