Skip to content

Commit

Permalink
Policy group table fix (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev authored Feb 8, 2024
1 parent 204b6d2 commit f00e2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AdminPolicy/AdminPolicy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const AdminPolicy = () => {
.then((response) => response.json())
.then((detailData) => {
fetch(
`https://zetachain-athens.blockpi.network/lcd/v1/public/cosmos/group/v1/group_members/${detailData.info.group_id}`
`${baseUrl}/cosmos/group/v1/group_members/${detailData.info.group_id}`
)
.then((response) => response.json())
.then((membersData) => {
Expand Down

0 comments on commit f00e2b1

Please sign in to comment.