()
| 126 | * main process owns the credential) — the gate is only for standalone web. |
| 127 | */ |
| 128 | export const notifyLocalAuthRequired = (): void => { |
| 129 | if (isDesktopBridge()) return; |
| 130 | setAuthRequired(true); |
| 131 | }; |
| 132 | |
| 133 | const useAuthRequired = (): boolean => |
| 134 | React.useSyncExternalStore( |
no test coverage detected