Skip to content

Commit

Permalink
fix(tangle-dapp): Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yurixander committed Oct 13, 2024
1 parent 098ee6e commit 5fee973
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions apps/tangle-dapp/app/restake/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
'use client';

import { AddCircleLineIcon, Search, SparklingIcon } from '@webb-tools/icons';
import {
AddCircleLineIcon,
Search,
SparklingIcon,
UserLineIcon,
} from '@webb-tools/icons';
import { TANGLE_DOCS_RESTAKING_URL } from '@webb-tools/webb-ui-components';
import Button from '@webb-tools/webb-ui-components/components/buttons/Button';
import { Typography } from '@webb-tools/webb-ui-components/typography/Typography';
Expand Down Expand Up @@ -65,7 +70,7 @@ export default function RestakePage() {
/>

<OnboardingItem
Icon={AddCircleLineIcon}
Icon={UserLineIcon}
title="Choose an Operator"
description="Select an operator to delegate your deposited assets. This step is crucial for securing service instances on Tangle."
/>
Expand Down Expand Up @@ -125,9 +130,9 @@ export default function RestakePage() {
<Typography variant="body1">{CONTENT.HOW_IT_WORKS}</Typography>
</div>

{/** TODO: Determine read more link here */}
<Button
href="#"
href={TANGLE_DOCS_RESTAKING_URL}
target="_blank"
variant="link"
size="sm"
className="inline-block ml-auto"
Expand Down
2 changes: 1 addition & 1 deletion apps/tangle-dapp/components/tables/Operators/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const OperatorsTable: FC<Props> = ({
return (
<TableStatus
title="No operators found"
description="It looks like there is no operator running at the moment."
description="It looks like there are no operators running at the moment."
icon="⚙️"
{...emptyTableProps}
className={twMerge(sharedTableStatusClxs, emptyTableProps?.className)}
Expand Down
2 changes: 1 addition & 1 deletion apps/tangle-dapp/components/tables/Vaults/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const VaultsTable: FC<Props> = ({
return (
<TableStatus
title="No vaults found"
description="It looks like there is no vaults at the moment."
description="It looks like there are no vaults at the moment."
icon="🔍"
{...emptyTableProps}
className={twMerge(sharedTableStatusClxs, emptyTableProps?.className)}
Expand Down

0 comments on commit 5fee973

Please sign in to comment.