diff --git a/CHANGELOG.md b/CHANGELOG.md index 64d6935ef..8c400fc02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features +- [#72](https://github.com/alleslabs/celatone-frontend/pull/72) Fix general wording and grammar - [#110](https://github.com/alleslabs/celatone-frontend/pull/110) Fix proposal detail rendering - [#109](https://github.com/alleslabs/celatone-frontend/pull/109) Fix incorrect rendering of zero value badges - [#106](https://github.com/alleslabs/celatone-frontend/pull/106) Add sort alphabetically to query and execute shortcuts diff --git a/src/lib/components/state/ZeroState.tsx b/src/lib/components/state/ZeroState.tsx index 651d2ebb4..6ea1241b0 100644 --- a/src/lib/components/state/ZeroState.tsx +++ b/src/lib/components/state/ZeroState.tsx @@ -39,7 +39,7 @@ const ActionSection = ({ list, handleAction }: ActionSectionProps) => }} /> - Created contract list and saved contracts are stored in your device only. + Contract lists and saved contracts are stored locally on your device. ); @@ -76,7 +76,7 @@ export const ZeroState = ({ list, isReadOnly }: ZeroStateProps) => { alignContent="center" > {!isWalletConnected && isInstantiatedByMe ? ( - + ) : ( diff --git a/src/lib/pages/codes/components/CodesTable.tsx b/src/lib/pages/codes/components/CodesTable.tsx index 0e3548c5d..fd80afc8d 100644 --- a/src/lib/pages/codes/components/CodesTable.tsx +++ b/src/lib/pages/codes/components/CodesTable.tsx @@ -74,7 +74,7 @@ const NotMatched = () => { const Unconnected = () => { return ( - + ); }; @@ -85,7 +85,7 @@ const Empty = ({ type }: OtherTBodyProps) => { case "all": return "All Code IDs will display here"; case "saved": - return "Your saved Code IDs will display here. Saved Codes are stored in your device."; + return "Your saved code IDs will display here. Saved codes are stored locally on your device."; case "stored": return "Your uploaded Wasm files will display as My Stored Codes"; default: diff --git a/src/lib/pages/deploy/index.tsx b/src/lib/pages/deploy/index.tsx index 13b825152..05d6da484 100644 --- a/src/lib/pages/deploy/index.tsx +++ b/src/lib/pages/deploy/index.tsx @@ -18,13 +18,13 @@ const Deploy = () => { navigate({ pathname: "/upload" })} mb="16px" /> navigate({ pathname: "/instantiate" })} /> diff --git a/src/lib/pages/home/components/QuickMenu.tsx b/src/lib/pages/home/components/QuickMenu.tsx index dbd736b52..92174c821 100644 --- a/src/lib/pages/home/components/QuickMenu.tsx +++ b/src/lib/pages/home/components/QuickMenu.tsx @@ -15,13 +15,13 @@ const cardProps = { const secondaryMenu = [ { title: "Query", - subtitle: "Query and get response from smart contract", + subtitle: "Query state data from smart contracts", slug: "query", icon: MdSearch, }, { title: "Execute", - subtitle: "Send execute messages to smart contract", + subtitle: "Send transactions to smart contracts", slug: "execute", icon: MdInput, }, @@ -35,7 +35,7 @@ export const QuickMenu = () => { @@ -49,10 +49,10 @@ export const QuickMenu = () => { > - Deploy new contract + Deploy a new contract - Deploy contract by upload new Wasm file + Upload a new wasm code or instantiate a new contract diff --git a/src/lib/pages/home/components/RecentActivities.tsx b/src/lib/pages/home/components/RecentActivities.tsx index 82d3620e8..2b5f80041 100644 --- a/src/lib/pages/home/components/RecentActivities.tsx +++ b/src/lib/pages/home/components/RecentActivities.tsx @@ -101,7 +101,7 @@ export const RecentActivities = observer(() => { minH="128px" > - Your recent queries will display here. + Your recent interactions will display here. )} diff --git a/src/lib/pages/past-txs/index.tsx b/src/lib/pages/past-txs/index.tsx index 6f8571494..4a0b40954 100644 --- a/src/lib/pages/past-txs/index.tsx +++ b/src/lib/pages/past-txs/index.tsx @@ -178,7 +178,7 @@ const PastTxs = () => { > );