Skip to content

Commit

Permalink
🔥 YPP disabled: Fix links (Joystream#66)
Browse files Browse the repository at this point in the history
* YPP disabled: Fix GH issue link

* Add proposal link
  • Loading branch information
Lezek123 authored Nov 5, 2024
1 parent da5a127 commit c344fda
Showing 1 changed file with 18 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { FC } from 'react'

import { SvgAlertsWarning24 } from '@/assets/icons'
import { SvgActionNewTab, SvgAlertsWarning24 } from '@/assets/icons'
import { Banner } from '@/components/Banner'
import { Text } from '@/components/Text'
import { TextButton } from '@/components/_buttons/Button'
Expand All @@ -18,7 +18,16 @@ export const YppSuspendedBanner: FC = () => (
<>
<Text variant="t200" color="colorText" as="p" margin={{ bottom: 6 }}>
Due to recent technical issues with the YouTube Sync service, the YouTube Partner Program (YPP) has been
temporarily suspended until further notice.
temporarily suspended until further notice (
<TextButton
openLinkInNewTab={true}
to="https://pioneerapp.xyz/#/proposals/preview/1033"
icon={<SvgActionNewTab />}
iconPlacement="right"
>
Related proposal
</TextButton>
).
</Text>
<Text variant="t200" color="colorText" as="p" margin={{ bottom: 2 }}>
The issues we identified:
Expand All @@ -27,10 +36,15 @@ export const YppSuspendedBanner: FC = () => (
<ListItemMarker />
<ListItemContent>
Some creators were inadvertently removed from YPP due to a bug in the YouTube Sync service (
<TextButton as="span" to="https://github.com/Joystream/youtube-synch/issues/337">
<TextButton
openLinkInNewTab={true}
to="https://github.com/Joystream/youtube-synch/issues/337"
icon={<SvgActionNewTab />}
iconPlacement="right"
>
GitHub issue
</TextButton>
)
).
</ListItemContent>
</ListItem>
<ListItem>
Expand Down

0 comments on commit c344fda

Please sign in to comment.