Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a479863f88 | ||
|
|
c550545116 |
@@ -43,9 +43,7 @@ export function FeedbackModal({ inCall, roomId, onClose, ...rest }: Props) {
|
||||
const descriptionData = data.get("description");
|
||||
const description =
|
||||
typeof descriptionData === "string" ? descriptionData : "";
|
||||
const sendLogsData = data.get("sendLogs");
|
||||
const sendLogs =
|
||||
typeof sendLogsData === "string" ? sendLogsData === "true" : false;
|
||||
const sendLogs = Boolean(data.get("sendLogs"));
|
||||
const rageshakeRequestId = randomString(16);
|
||||
|
||||
submitRageshake({
|
||||
|
||||
Reference in New Issue
Block a user