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 b714167 commit 500ae8fCopy full SHA for 500ae8f
src-tauri/tauri.conf.json
@@ -1,7 +1,7 @@
1
{
2
"$schema": "https://schema.tauri.app/config/2",
3
"productName": "NoRisk Launcher",
4
- "version": "0.6.7-beta.3",
+ "version": "0.6.7-beta.4",
5
"identifier": "gg.norisk.NoRiskClientLauncherV3",
6
"build": {
7
"beforeDevCommand": "yarn dev",
src/hooks/useConfirmDialog.tsx
@@ -152,13 +152,14 @@ export function useConfirmDialog() {
152
);
153
const confirmDialog =
154
isMounted && isOpen
155
- ? createPortal( <Modal
+ ? createPortal(
156
+ <Modal
157
title={options.title}
158
onClose={handleClose}
159
width="md"
160
+ footer={renderFooter()}
161
>
162
{renderContent()}
- {renderFooter()}
163
</Modal>,
164
document.body,
165
)
0 commit comments