diff --git a/frontend/src/routes/_context.tsx b/frontend/src/routes/_context.tsx index 81e2ebd4e1..672e2e1807 100644 --- a/frontend/src/routes/_context.tsx +++ b/frontend/src/routes/_context.tsx @@ -109,24 +109,43 @@ function Modals() { const params = useParams({ strict: false }); const CreateActorDialog = useDialog.CreateActor.Dialog; + const FeedbackDialog = useDialog.Feedback.Dialog; return ( - { - if (!value) { - navigate({ - to: ".", - search: (old) => ({ - ...old, - modal: undefined, - }), - }); - } - }, - }} - /> + <> + { + if (!value) { + navigate({ + to: ".", + search: (old) => ({ + ...old, + modal: undefined, + }), + }); + } + }, + }} + /> + { + if (!value) { + navigate({ + to: ".", + search: (old) => ({ + ...old, + modal: undefined, + }), + }); + } + }, + }} + /> + ); }