Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleA committed Dec 16, 2024
1 parent f1b8155 commit 0f11d34
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/checkout/src/hooks/useMarketplaceClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ import { useMemo } from 'react'

export interface UseMarketplaceClientArgs {
chain: ChainNameOrId,
isDev?: boolean
isDev?: boolean,
}

export const useMarketplaceClient = ({
chain,
isDev = false
}: UseMarketplaceClientArgs) => {
export const useMarketplaceClient = ({ chain, isDev = false }: UseMarketplaceClientArgs) => {
const projectAccessKey = useProjectAccessKey()

const marketplaceClient = useMemo(() => {
Expand Down

0 comments on commit 0f11d34

Please sign in to comment.