diff --git a/lib/widgets/post/post_item.dart b/lib/widgets/post/post_item.dart index 48a4700..7d90ecd 100644 --- a/lib/widgets/post/post_item.dart +++ b/lib/widgets/post/post_item.dart @@ -965,7 +965,7 @@ class _PostContentHeader extends StatelessWidget { onTap: () { GoRouter.of(context).pushNamed( 'postEditor', - pathParameters: {'mode': data.typePlural}, + pathParameters: {'mode': 'stories'}, queryParameters: {'replying': data.id.toString()}, ); }, @@ -981,7 +981,7 @@ class _PostContentHeader extends StatelessWidget { onTap: () { GoRouter.of(context).pushNamed( 'postEditor', - pathParameters: {'mode': data.typePlural}, + pathParameters: {'mode': 'stories'}, queryParameters: {'reposting': data.id.toString()}, ); },