Skip to content

Commit

Permalink
fix: dont capitalize collateral choice
Browse files Browse the repository at this point in the history
  • Loading branch information
samsiegart committed Aug 31, 2023
1 parent 6494f25 commit afb1275
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 203 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"postinstall": "patch-package"
},
"dependencies": {
"@agoric/rpc": "^0.0.2-dev-2c6fbc5.0",
"@agoric/rpc": "^0.6.0",
"@agoric/ertp": "^0.16.3-dev-f581a7e.0",
"@agoric/inter-protocol": "^0.16.2-dev-f581a7e.0",
"@agoric/smart-wallet": "^0.5.4-dev-f581a7e.0",
"@agoric/ui-components": "^0.3.9-dev-39b1586.0",
"@agoric/ui-components": "^0.9.0",
"@agoric/wallet": "^0.18.4-dev-f581a7e.0",
"@agoric/web-components": "0.9.1-dev-4dd5c43.0",
"@agoric/web-components": "^0.12.0",
"@agoric/zoe": "^0.26.3-dev-f581a7e.0",
"@endo/eventual-send": "^0.17.2",
"@endo/init": "^0.5.56",
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ const App = () => {
makeAgoricChainStorageWatcher(
rpc,
chainName,
importContext.fromBoard.unserialize,
e => {
setError(e);
throw e;
},
importContext.fromBoard,
),
);

Expand Down
2 changes: 1 addition & 1 deletion src/components/CollateralChoice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const CollateralChoice = ({ id, displayFunctions }: CollateralChoiceParams) => {
src={logoSrc}
alt={displayBrandPetname(metrics.totalCollateral.brand)}
></img>
<h3 className="text-center text-xl font-medium font-serif">
<h3 className="text-center text-xl font-medium font-serif normal-case">
{collateralTitle}
</h3>
<table className="mt-4">
Expand Down
Loading

0 comments on commit afb1275

Please sign in to comment.