Skip to content
Closed
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
2 changes: 1 addition & 1 deletion ui/component/youtubeTransferStatus/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@
try {
await navigator.clipboard.writeText(firstAvailableToken);
} catch (err) {
console.log('Failed to copy token:', err);

Check warning on line 341 in ui/component/youtubeTransferStatus/view.jsx

View workflow job for this annotation

GitHub Actions / lint

Unexpected console statement
}
}}
/>
Expand Down Expand Up @@ -390,7 +390,7 @@
<Button
button="link"
label={__('How to use')}
href="https://help.odysee.tv/category-syncprogram/synctool/"
href="https://help.odysee.tv/category-syncprogram/"
/>
</div>
</div>
Expand Down
7 changes: 4 additions & 3 deletions ui/page/youtubeSync/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default function YoutubeSync(props: Props) {
<Card
title={__('Sync your YouTube channel to %site_name%', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })}
subtitle={__(
`Don't want to manually upload? Get your YouTube videos in front of the %site_name% audience.`,
`Bring your YouTube videos to %site_name% without manual uploads. We'll guide you through linking your channel and getting started.`,
{
site_name: IS_WEB ? SITE_NAME : 'Odysee',
}
Expand All @@ -134,7 +134,7 @@ export default function YoutubeSync(props: Props) {
{nameError ? (
<span className="error__text">{nameError}</span>
) : (
__('Your desired %site_name% channel name', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })
__('Choose your %site_name% channel name', { site_name: IS_WEB ? SITE_NAME : 'Odysee' })
)}
</label>
<div className="form-field__prefix">@</div>
Expand Down Expand Up @@ -184,7 +184,8 @@ export default function YoutubeSync(props: Props) {
site_name: SITE_NAME,
}}
>
I want to sync my content to %site_name%. I have also read and understand %faq%.
I want to sync my content to %site_name%. I have read and agree to %terms%, and I understand
Copy link
Contributor

Choose a reason for hiding this comment

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

prob not worth it given the translations.

%faq%.
</I18nMessage>
}
/>
Expand Down
7 changes: 4 additions & 3 deletions ui/scss/component/_shorts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ body:has(.main--shorts-page):not(:has(.navigation__overlay--active)) {
.shorts-page__side-panel {
position: fixed;
top: 0;
right: -600px;
width: 600px;
right: -720px;
width: 720px;
height: 100vh;
background: var(--color-card-background);
border-left: 1px solid var(--color-border);
Expand Down Expand Up @@ -393,7 +393,8 @@ body:has(.main--shorts-page):not(:has(.navigation__overlay--active)) {

@media (max-width: 1180px) and (min-width: $breakpoint-small) {
.shorts-page__side-panel {
width: 400px;
width: 440px;
right: -440px;
.claim-preview__text {
flex-direction: column !important;
}
Expand Down
Loading