mirror of
https://github.com/ivabus/www
synced 2024-11-22 01:55:07 +03:00
adopt new infra api endpoints
This commit is contained in:
parent
26473a9586
commit
f8e81d1053
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue