mirror of
https://github.com/ivabus/www
synced 2024-11-22 02:15:06 +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);
|
const [isLoading, setLoading] = React.useState(true);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
fetch("https://app.tea.xyz/api/bottles")
|
fetch("https://api.tea.xyz/v0/bottles")
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
setBottles(res);
|
setBottles(res);
|
||||||
|
|
|
@ -3,7 +3,7 @@ function PackageBottles() {
|
||||||
const [isLoading, setIsLoading] = React.useState(true);
|
const [isLoading, setIsLoading] = React.useState(true);
|
||||||
|
|
||||||
React.useEffect(() => {
|
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)
|
fetch(url)
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
Loading…
Reference in a new issue