Skip to content

Commit

Permalink
fix(provider): change become-provider to create-provider
Browse files Browse the repository at this point in the history
  • Loading branch information
jigar-arc10 committed Dec 8, 2024
1 parent 5a5a172 commit d9a3faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/provider-console/src/components/layout/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const Sidebar: React.FC<Props> = ({ isMobileOpen, handleDrawerToggle, isN
})}
href="/become-provider"
>
{_isNavOpen && "Become Provider "}
{_isNavOpen && "Create Provider "}
<Rocket className={cn("rotate-45", { ["ml-4"]: _isNavOpen })} fontSize="small" />
</Link>
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/provider-console/src/pages/connect-wallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ConnectWallet } from "@src/components/shared/ConnectWallet";
const YourAccount: React.FC = () => {
return (
<Layout>
<ConnectWallet text="Connect your wallet to become provider" />
<ConnectWallet text="Connect your wallet to create provider" />
</Layout>
);
};
Expand Down

0 comments on commit d9a3faa

Please sign in to comment.