Fix stats service URL

This commit is contained in:
Riordan Panayides 2021-08-31 00:51:12 +01:00 committed by Tyler Shipe
parent 5c752cca78
commit c4707086ed
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ const useMangoStats = () => {
useEffect(() => {
const fetchHistoricalPerpStats = async () => {
const response = await fetch(
`http://localhost:8080/perp?mangoGroup=${mangoGroupName}`
`https://mango-stats-v3.herokuapp.com/perp?mangoGroup=${mangoGroupName}`
)
const stats = await response.json()
setPerpStats(stats)