diff options
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/components/ProblemReport.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/components/ProblemReport.tsx b/gui/src/renderer/components/ProblemReport.tsx index f05b7367c3..30fac3aa88 100644 --- a/gui/src/renderer/components/ProblemReport.tsx +++ b/gui/src/renderer/components/ProblemReport.tsx @@ -437,14 +437,14 @@ function OutdatedVersionWarningDialog() { const openDownloadLink = useCallback(async () => { await openUrl(suggestedIsBeta ? links.betaDownload : links.download); - }, []); + }, [suggestedIsBeta]); const onClose = useCallback(() => history.pop(), [history.pop]); const outdatedVersionCancel = useCallback(() => { acknowledgeOutdatedVersion(); onClose(); - }, []); + }, [onClose]); const message = messages.pgettext( 'support-view', |
