Refactor post meta to return PostView (#5645)
This commit is contained in:
@@ -38,7 +38,6 @@ export function Composer({}: {winHeight: number}) {
|
||||
replyTo={state?.replyTo}
|
||||
onPost={state?.onPost}
|
||||
quote={state?.quote}
|
||||
quoteCount={state?.quoteCount}
|
||||
mention={state?.mention}
|
||||
text={state?.text}
|
||||
imageUris={state?.imageUris}
|
||||
|
||||
@@ -50,7 +50,6 @@ export function Composer({winHeight}: {winHeight: number}) {
|
||||
replyTo={state.replyTo}
|
||||
onPost={state.onPost}
|
||||
quote={state.quote}
|
||||
quoteCount={state.quoteCount}
|
||||
mention={state.mention}
|
||||
text={state.text}
|
||||
imageUris={state.imageUris}
|
||||
|
||||
@@ -94,7 +94,6 @@ function Inner({state}: {state: ComposerOpts}) {
|
||||
cancelRef={ref}
|
||||
replyTo={state.replyTo}
|
||||
quote={state.quote}
|
||||
quoteCount={state?.quoteCount}
|
||||
onPost={state.onPost}
|
||||
mention={state.mention}
|
||||
openEmojiPicker={onOpenPicker}
|
||||
|
||||
Reference in New Issue
Block a user