From 9b90289e7cd919cf8fe1857ff8b1d82980762f25 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Mon, 24 Apr 2023 11:34:09 -0400 Subject: [PATCH] Fix confirmation step in Group report --- .../ui/components/modals/report-modal/report-modal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/features/ui/components/modals/report-modal/report-modal.tsx b/app/soapbox/features/ui/components/modals/report-modal/report-modal.tsx index 04252424d..566e75981 100644 --- a/app/soapbox/features/ui/components/modals/report-modal/report-modal.tsx +++ b/app/soapbox/features/ui/components/modals/report-modal/report-modal.tsx @@ -54,8 +54,8 @@ const reportSteps = { }, [ReportableEntities.GROUP]: { ONE: ReasonStep, - TWO: ConfirmationStep, - THREE: null, + TWO: null, + THREE: ConfirmationStep, }, };