We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c332f2a commit da7baa5Copy full SHA for da7baa5
gui/src/components/dialogs/FeedbackDialog.tsx
@@ -1,16 +1,11 @@
1
import { usePostHog } from "posthog-js/react";
2
-import { useState } from "react";
3
import { Button, Input, SecondaryButton } from "..";
4
import { useAppDispatch } from "../../redux/hooks";
5
import { setDialogMessage, setShowDialog } from "../../redux/slices/uiSlice";
6
7
export default function FeedbackDialog() {
8
const posthog = usePostHog();
9
const dispatch = useAppDispatch();
10
- const [submitted, setSubmitted] = useState(false);
11
-
12
- if (submitted) {
13
- }
14
15
return (
16
<div className="mx-auto flex max-w-md flex-col p-6 pt-8">
0 commit comments