Skip to content

Commit d77400f

Browse files
authored
feat: creators terms (#4439)
1 parent 01fe051 commit d77400f

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

packages/shared/src/components/cores/AwardFeesNote.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
TypographyColor,
77
TypographyType,
88
} from '../typography/Typography';
9-
import { termsOfService } from '../../lib/constants';
9+
import { creatorsTermsOfService } from '../../lib/constants';
1010
import { anchorDefaultRel } from '../../lib/strings';
1111

1212
export type AwardFeesNoteProps = {
@@ -25,7 +25,7 @@ export const AwardFeesNote = ({
2525
Awards may include a revenue share with the recipient and are subject to
2626
our{' '}
2727
<a
28-
href={termsOfService}
28+
href={creatorsTermsOfService}
2929
target="_blank"
3030
rel={anchorDefaultRel}
3131
className="font-bold underline"

packages/shared/src/lib/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,5 @@ export const withdrawLink = 'https://r.daily.dev/withdraw';
154154
export const coresDocsLink = 'https://r.daily.dev/cores';
155155

156156
export const webFunnelPrefix = '/helloworld';
157+
158+
export const creatorsTermsOfService = 'https://r.daily.dev/creators-terms';

packages/webapp/pages/wallet.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import {
1515
} from '@dailydotdev/shared/src/components/typography/Typography';
1616
import {
1717
coresDocsLink,
18+
creatorsTermsOfService,
1819
onboardingUrl,
19-
termsOfService,
2020
webappUrl,
2121
withdrawLink,
2222
} from '@dailydotdev/shared/src/lib/constants';
@@ -426,7 +426,7 @@ const Wallet = (): ReactElement => {
426426
tag="a"
427427
target="_blank"
428428
rel="noopener"
429-
href={termsOfService}
429+
href={creatorsTermsOfService}
430430
icon={<DocsIcon />}
431431
variant={ButtonVariant.Tertiary}
432432
size={ButtonSize.Small}

0 commit comments

Comments
 (0)