Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dont capitalize collateral choice #197

Merged
merged 1 commit into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
makeAgoricChainStorageWatcher(
rpc,
chainName,
importContext.fromBoard.unserialize,
e => {
setError(e);
throw e;
},
importContext.fromBoard,
),
);

Expand All @@ -127,7 +127,7 @@
return () => {
isCancelled = true;
};
}, [

Check warning on line 130 in src/App.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

React Hook useEffect has a missing dependency: 'importContext.fromBoard'. Either include it or remove the dependency array
setError,
netConfig,
chainStorageWatcher,
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