Skip to content

Commit

Permalink
fix(storage): cleanup logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbeckers committed Jun 12, 2024
1 parent 45a2b11 commit b175b3c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sdk/src/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ export const getStorage = ({
environment: Environment;
config?: AxiosRequestConfig;
}): HypercertStorage => {
const baseURL = ENDPOINTS[environment];

const _config = { ...config, baseURL };

console.log("config", _config);
const _config = { ...config, baseURL: ENDPOINTS[environment] };

return {
storeMetadata: async (metadata: HypercertMetadata, config: AxiosRequestConfig = {}) =>
Expand Down

0 comments on commit b175b3c

Please sign in to comment.