diff --git a/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx b/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx index 6f2ca47c..6b704027 100644 --- a/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx +++ b/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx @@ -33,6 +33,17 @@ const privacyLevel = [ }, ]; +const contentPostingMethod = [ + { + value: 'DIRECT_POST', + label: 'Post content directly to TikTok', + }, + { + value: 'UPLOAD', + label: 'Upload content to TikTok without posting it', + }, +]; + const yesNo = [ { value: 'true', @@ -126,6 +137,19 @@ const TikTokSettings: FC<{ values?: any }> = (props) => { ))} +