summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index d823257..7815951 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -33,7 +33,8 @@ export function Content() {
const {
currentProfile,
- updateProfileConfig
+ updateProfileConfig,
+ loadProfiles
} = useProfileManagement();
const { isInstalling, isUninstalling, handleInstall, handleUninstall } = useInstallationActions();
@@ -96,7 +97,10 @@ export function Content() {
{isInstalled && (
<ProfileManagement
currentProfile={currentProfile}
- onProfileChange={() => loadLsfgConfig()}
+ onProfileChange={async () => {
+ await loadProfiles();
+ await loadLsfgConfig();
+ }}
/>
)}