diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 7b273ae..f934947 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -87,5 +87,8 @@ "*.{ts,tsx,js,jsx,json,css,md}": [ "prettier -w" ] + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/react-components/src/lib/config/index.ts b/packages/react-components/src/lib/config/index.ts index b2bc354..4f55d1a 100644 --- a/packages/react-components/src/lib/config/index.ts +++ b/packages/react-components/src/lib/config/index.ts @@ -45,5 +45,5 @@ export const makeAssetList = (chain_name: string) => { 'Agoric missing from chain registry, cannot initiliaze test chains', ); - return { ...agoricAssetList, chain_name }; + return { ...agoricAssetList, chain_name } as AssetList; };