Feedback copy
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
57e79862a5
commit
4c1168aaf7
1 changed files with 8 additions and 2 deletions
|
@ -22,6 +22,7 @@ import { Button } from "../button";
|
||||||
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
||||||
import { useSubmitRageshake, useRageshakeRequest } from "./submit-rageshake";
|
import { useSubmitRageshake, useRageshakeRequest } from "./submit-rageshake";
|
||||||
import { Body } from "../typography/Typography";
|
import { Body } from "../typography/Typography";
|
||||||
|
import styles from "../input/SelectInput.module.css";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
roomId?: string;
|
roomId?: string;
|
||||||
|
@ -58,13 +59,18 @@ export function FeedbackSettingsTab({ roomId }: Props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Body>{t("Having trouble? Help us fix it.")}</Body>
|
<h4 className={styles.label}>{t("Submit feedback")}</h4>
|
||||||
|
<Body>
|
||||||
|
{t(
|
||||||
|
"If you are experiencing issues or simply would like to provide some feedback, please send us a short description below."
|
||||||
|
)}
|
||||||
|
</Body>
|
||||||
<form onSubmit={onSubmitFeedback}>
|
<form onSubmit={onSubmitFeedback}>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<InputField
|
<InputField
|
||||||
id="description"
|
id="description"
|
||||||
name="description"
|
name="description"
|
||||||
label={t("Description (optional)")}
|
label={t("Your feedback")}
|
||||||
type="textarea"
|
type="textarea"
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
|
|
Loading…
Add table
Reference in a new issue