summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/Layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'extension/react-app/src/components/Layout.tsx')
-rw-r--r--extension/react-app/src/components/Layout.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/extension/react-app/src/components/Layout.tsx b/extension/react-app/src/components/Layout.tsx
index 86192afb..eee92ff7 100644
--- a/extension/react-app/src/components/Layout.tsx
+++ b/extension/react-app/src/components/Layout.tsx
@@ -112,15 +112,13 @@ const Layout = () => {
<Onboarding />
<TextDialog
showDialog={showDialog}
- onEnter={(text) => {
- client?.sendMainInput(`/feedback ${text}`);
+ onEnter={() => {
dispatch(setShowDialog(false));
}}
onClose={() => {
dispatch(setShowDialog(false));
}}
message={dialogMessage}
- entryOn={dialogEntryOn}
/>
<Outlet />