Skip to content

Commit

Permalink
chore: rename signup contract to signup (#4970)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint authored Jun 5, 2024
2 parents f3e2c18 + 8e1c566 commit 70dbdb4
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Staff/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const settingsSidebarItems = [
},
{
icon: <UserPlusIcon className="size-4" />,
title: 'Signup Contract',
url: '/staff/signup-contract'
title: 'Signup',
url: '/staff/signup'
}
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const relayAddresses: Address[] = [
'0x1A15ACfd4293Da7F6dD964f065A0b418355B2b92'
];

const SignupContract: NextPage = () => {
const Signup: NextPage = () => {
const { currentProfile } = useProfileStore();
const { staffMode } = useFeatureFlagsStore();

Expand All @@ -47,13 +47,13 @@ const SignupContract: NextPage = () => {

return (
<GridLayout>
<MetaTags title={`Staff Tools • Signup Contract ${APP_NAME}`} />
<MetaTags title={`Staff Tools • Signup • ${APP_NAME}`} />
<GridItemFour>
<StaffSidebar />
</GridItemFour>
<GridItemEight className="space-y-5">
<Card>
<CardHeader title="Signup Contract" />
<CardHeader title="Signup Stats" />
<div className="m-5 space-y-5">
<LensCredits />
<SignupPrice />
Expand All @@ -72,4 +72,4 @@ const SignupContract: NextPage = () => {
);
};

export default SignupContract;
export default Signup;
3 changes: 0 additions & 3 deletions apps/web/src/pages/staff/signup-contract.tsx

This file was deleted.

3 changes: 3 additions & 0 deletions apps/web/src/pages/staff/signup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Signup from '@components/Staff/Signup';

export default Signup;

1 comment on commit 70dbdb4

@vercel
Copy link

@vercel vercel bot commented on 70dbdb4 Jun 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

heyxyz.vercel.app
web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
hey.xyz

Please sign in to comment.