adopt new infra api endpoints

This commit is contained in:
neil molina 2023-05-26 12:21:00 +08:00
parent 26473a9586
commit f8e81d1053
No known key found for this signature in database
GPG key ID: 52D69BF1F02F4267
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ function Bottles() {
const [isLoading, setLoading] = React.useState(true);
React.useEffect(() => {
fetch("https://app.tea.xyz/api/bottles")
fetch("https://api.tea.xyz/v0/bottles")
.then((res) => res.json())
.then((res) => {
setBottles(res);

View file

@ -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://api.tea.xyz/v0/bottles/');
fetch(url)
.then((res) => res.json())
.then((res) => {