feat(tauri): Allow export of wallet descriptors (#118)

This commit is contained in:
Einliterflasche 2024-10-15 14:22:35 +02:00 committed by GitHub
parent 898c7a2450
commit c91adb3ac8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 141 additions and 11 deletions

View file

@ -4,7 +4,7 @@ import DonateInfoBox from "./DonateInfoBox";
import FeedbackInfoBox from "./FeedbackInfoBox";
import DaemonControlBox from "./DaemonControlBox";
import SettingsBox from "./SettingsBox";
import ExportDataBox from "./ExportDataBox";
const useStyles = makeStyles((theme) => ({
outer: {
display: "flex",
@ -19,9 +19,10 @@ export default function HelpPage() {
return (
<Box className={classes.outer}>
<FeedbackInfoBox />
<DaemonControlBox />
<SettingsBox />
<FeedbackInfoBox />
<ExportDataBox />
<ContactInfoBox />
<DonateInfoBox />
</Box>