Skip to content

Commit

Permalink
fix: exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
nachomazzara committed May 21, 2021
1 parent c1e9041 commit c625634
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/modules/vendor/decentraland/bid/api.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { OrderStatus } from '../../../order/types'
import { Bid } from '../../../bid/types'

export const NFT_SERVER_URL = process.env.REACT_APP_NFT_SERVER_URL!
const NFT_SERVER_URL = process.env.REACT_APP_NFT_SERVER_URL!

class BidAPI {
async fetch(options: Record<string, string>) {
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/modules/vendor/decentraland/order/api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Order } from '../../../order/types'

export const NFT_SERVER_URL = process.env.REACT_APP_NFT_SERVER_URL!
const NFT_SERVER_URL = process.env.REACT_APP_NFT_SERVER_URL!

class OrderAPI {
async fetchByNFT(contractAddress: string, tokenId: string) {
Expand Down

0 comments on commit c625634

Please sign in to comment.