Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/shared/src/components/cores/AwardFeesNote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
TypographyColor,
TypographyType,
} from '../typography/Typography';
import { termsOfService } from '../../lib/constants';
import { creatorsTermsOfService } from '../../lib/constants';
import { anchorDefaultRel } from '../../lib/strings';

export type AwardFeesNoteProps = {
Expand All @@ -25,7 +25,7 @@ export const AwardFeesNote = ({
Awards may include a revenue share with the recipient and are subject to
our{' '}
<a
href={termsOfService}
href={creatorsTermsOfService}
target="_blank"
rel={anchorDefaultRel}
className="font-bold underline"
Expand Down
2 changes: 2 additions & 0 deletions packages/shared/src/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,5 @@ export const withdrawLink = 'https://r.daily.dev/withdraw';
export const coresDocsLink = 'https://r.daily.dev/cores';

export const webFunnelPrefix = '/helloworld';

export const creatorsTermsOfService = 'https://r.daily.dev/creators-terms';
4 changes: 2 additions & 2 deletions packages/webapp/pages/wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
} from '@dailydotdev/shared/src/components/typography/Typography';
import {
coresDocsLink,
creatorsTermsOfService,
onboardingUrl,
termsOfService,
webappUrl,
withdrawLink,
} from '@dailydotdev/shared/src/lib/constants';
Expand Down Expand Up @@ -426,7 +426,7 @@ const Wallet = (): ReactElement => {
tag="a"
target="_blank"
rel="noopener"
href={termsOfService}
href={creatorsTermsOfService}
icon={<DocsIcon />}
variant={ButtonVariant.Tertiary}
size={ButtonSize.Small}
Expand Down