From c1618026a79e5b7b1a447c4a9e9c254ca8bbef19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Fri, 23 Sep 2022 23:12:44 +0200 Subject: [PATCH] Fix share route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/soapbox/features/share/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/features/share/index.tsx b/app/soapbox/features/share/index.tsx index 562f23689..fdb5caa3d 100644 --- a/app/soapbox/features/share/index.tsx +++ b/app/soapbox/features/share/index.tsx @@ -19,7 +19,7 @@ const Share = () => { .join('\n\n'); if (text) { - dispatch(openComposeWithText(text)); + dispatch(openComposeWithText('compose-modal', text)); } return ( @@ -27,4 +27,4 @@ const Share = () => { ); }; -export default Share; \ No newline at end of file +export default Share;