commit f02b988c0fa7380676f6ec28216ba33b4d335056 parent ff45cd9922775f49261b7f18c4f0f3f2c44c7028 Author: Sebastian <sebasjm@taler-systems.com> Date: Wed, 22 Jul 2026 16:32:49 -0300 dont depend on object, use primitives Diffstat:
| M | packages/taler-exchange-aml-webui/src/hooks/officer.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-exchange-aml-webui/src/hooks/officer.ts b/packages/taler-exchange-aml-webui/src/hooks/officer.ts @@ -234,5 +234,5 @@ export function useExpireSessionAfter1hr() { return () => { clearTimeout(timeoutId); }; - }, [session]); + }, [session?.expiration.t_ms]); }