1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

fix build on CI

This commit is contained in:
Enzo Vezzaro 2022-06-14 13:47:13 -04:00
parent f242cebefa
commit 6a048d4c5c
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,9 @@ export const opcQuery = gql`
opc(id: 1) {
swapOceanFee
swapNonOceanFee
approvedTokens
approvedTokens {
id
}
id
}
}

View File

@ -39,7 +39,7 @@ function MarketMetadataProvider({
approvedTokens: response.data?.opc.approvedTokens,
swapApprovedFee: response.data?.opc.swapOceanFee,
swapNotApprovedFee: response.data?.opc.swapNonOceanFee
} as OpcFee)
} as unknown as OpcFee)
}
setOpcFees(opcData)
}