🩹(frontend) fix options unwrapping when silent login is disabled

The options were not properly unwrapped when silent login was
disabled, leading to incorrect behavior in that code path.
This commit is contained in:
lebaudantoine
2026-06-14 00:41:24 +02:00
committed by aleb_the_flash
parent d4a7cf279c
commit eae1a382d5
@@ -37,7 +37,7 @@ export const useUser = (
if (silentDisabled) {
return {
...opts,
...opts.fetchUserOptions,
attemptSilent: false,
}
}