diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-10-21 23:54:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-21 23:54:40 -0400 |
| commit | 7e6d29d9cb731d2648399282be87adb98e183084 (patch) | |
| tree | 58db3626b3678546e5cb1c4de9bcfc627fde46c7 /src/hooks/useLsfgHooks.ts | |
| parent | 7b5f3cb8b3d17ad125d2f40a58fbba80e863d703 (diff) | |
| parent | 192716ecfd85199f2d5704314eb7873635d190e9 (diff) | |
| download | decky-lsfg-vk-7e6d29d9cb731d2648399282be87adb98e183084.tar.gz decky-lsfg-vk-7e6d29d9cb731d2648399282be87adb98e183084.zip | |
Merge pull request #190 from xXJSONDeruloXx/cleanup-miscv0.12.1
More cleanup
Diffstat (limited to 'src/hooks/useLsfgHooks.ts')
| -rw-r--r-- | src/hooks/useLsfgHooks.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/hooks/useLsfgHooks.ts b/src/hooks/useLsfgHooks.ts index e5dea63..adc18ba 100644 --- a/src/hooks/useLsfgHooks.ts +++ b/src/hooks/useLsfgHooks.ts @@ -71,7 +71,6 @@ export function useDllDetection() { } export function useLsfgConfig() { - // Use centralized configuration for initial state const [config, setConfig] = useState<ConfigurationData>(() => ConfigurationManager.getDefaults()); const loadLsfgConfig = useCallback(async () => { @@ -114,7 +113,7 @@ export function useLsfgConfig() { useEffect(() => { loadLsfgConfig(); - }, []); // Empty dependency array to prevent infinite loop + }, []); return { config, |
