Wpe on ody #6729

Closed
jessopb wants to merge 9 commits from wpe-on-ody into odysee
Showing only changes of commit 8eaf718a6a - Show all commits

View file

@ -43,8 +43,7 @@ type Props = {
activeChannel: string, activeChannel: string,
activeChannelClaim: ?ChannelClaim, activeChannelClaim: ?ChannelClaim,
bottom: boolean, bottom: boolean,
onSubmit: (string, string) => void, livestream?: boolean,
livestream: boolean,
embed?: boolean, embed?: boolean,
toast: (string) => void, toast: (string) => void,
claimIsMine: boolean, claimIsMine: boolean,
@ -66,11 +65,9 @@ export function CommentCreate(props: Props) {
isReply, isReply,
parentId, parentId,
activeChannelClaim, activeChannelClaim,
onSubmit,
bottom, bottom,
livestream, livestream,
embed, embed,
toast,
claimIsMine, claimIsMine,
sendTip, sendTip,
doToast, doToast,
@ -154,8 +151,6 @@ export function CommentCreate(props: Props) {
const activeChannelName = activeChannelClaim && activeChannelClaim.name; const activeChannelName = activeChannelClaim && activeChannelClaim.name;
const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id; const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id;
console.log(activeChannelClaim);
setIsSubmitting(true); setIsSubmitting(true);
if (activeTab === TAB_LBC) { if (activeTab === TAB_LBC) {
@ -263,10 +258,6 @@ export function CommentCreate(props: Props) {
setIsSupportComment(false); setIsSupportComment(false);
setCommentFailure(false); setCommentFailure(false);
if (onSubmit) {
onSubmit(commentValue, activeChannelClaim.name);
}
if (onDoneReplying) { if (onDoneReplying) {
onDoneReplying(); onDoneReplying();
} }