Skip to content

Commit

Permalink
chore: fix some typos in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hanghuge authored Dec 10, 2024
1 parent 74ad2e2 commit 8ab84e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/deploy-web/src/utils/deploymentData/v1beta3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function appendTrialAttribute(yamlStr: string) {
indent: 2,
quotingType: '"',
styles: {
"!!null": "empty" // dump null as emtpy value
"!!null": "empty" // dump null as empty value
},
replacer: (key, value) => {
const isCurrentKeyProviderAttributes = key === "attributes" && Array.isArray(value) && value.some(attr => attr.key === TRIAL_ATTRIBUTE);
Expand Down
2 changes: 1 addition & 1 deletion apps/deploy-web/src/utils/sdl/sdlGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export const generateSdl = (services: ServiceType[], region?: string) => {
indent: 2,
quotingType: '"',
styles: {
"!!null": "empty" // dump null as emtpy value
"!!null": "empty" // dump null as empty value
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type TxMessageProps = {
export const MsgSetWithdrawAddress: React.FunctionComponent<TxMessageProps> = ({ message }) => {
return (
<>
<LabelValue label="Delegator Adrress" value={<AddressLink address={message?.data?.delegatorAddress} />} />
<LabelValue label="Delegator Address" value={<AddressLink address={message?.data?.delegatorAddress} />} />
<LabelValue label="Withdraw Address" value={<AddressLink address={message?.data?.withdrawAddress} />} />
</>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/components/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ export * from "./toggle-group";
export * from "./tooltip";
export * from "./data-table";
export * from "./charts";
// Folers
// Folders
export * from "./spinner";
export * from "./custom";

0 comments on commit 8ab84e2

Please sign in to comment.