From aa113f21801d83bcf593e0e46ef552850e9bbeb7 Mon Sep 17 00:00:00 2001 From: Daniel Elskamp Date: Wed, 22 Jul 2026 19:41:45 +0200 Subject: [PATCH 1/2] feat(connections): add icons to import and export-all buttons --- src/renderer/components/connections/ConnectionsScreen.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/renderer/components/connections/ConnectionsScreen.tsx b/src/renderer/components/connections/ConnectionsScreen.tsx index f2d5410..a8e0254 100644 --- a/src/renderer/components/connections/ConnectionsScreen.tsx +++ b/src/renderer/components/connections/ConnectionsScreen.tsx @@ -1,6 +1,6 @@ import { useState } from 'react'; import { useTranslation } from 'react-i18next'; -import { FiTrash2, FiEdit2, FiUpload } from 'react-icons/fi'; +import { FiTrash2, FiEdit2, FiUpload, FiDownload } from 'react-icons/fi'; import { useAccounts, useCreateAccount, useUpdateAccount, useRemoveAccount } from '../../hooks/useAccounts'; import { ProviderBadge } from '../accounts/ProviderBadge'; import { AccountForm } from '../accounts/AccountForm'; @@ -30,17 +30,19 @@ export function ConnectionsScreen({ onAccountRemoved }: { onAccountRemoved?: (id
- +
+ {t('settings.updateAvailable', { version: check.data.latestVersion })} +
+ {check.data.installer && ( + + )} + +
+ {download.isError && ( + {t('settings.updateInstallFailed')} + )} + {download.isSuccess && ( + {t('settings.updateInstallerOpened')} + )} +
)}