import { Box, Button, Dialog, DialogActions, DialogContent, DialogContentText, Paper, Switch, Typography, } from "@mui/material"; import CliLogsBox from "renderer/components/other/RenderedCliLog"; import { HashedLog } from "store/features/logsSlice"; interface LogViewerProps { open: boolean; setOpen: (_: boolean) => void; logs: HashedLog[]; setIsRedacted: (_: boolean) => void; isRedacted: boolean; } export default function LogViewer({ open, setOpen, logs, setIsRedacted, isRedacted, }: LogViewerProps) { return ( setOpen(false)} fullWidth> These are the logs that would be attached to your feedback message and provided to us developers. They help us narrow down the problem you encountered. Redact setIsRedacted(checked)} /> } /> ); }