refactor: totp

feat-otp-verification
James Elliott 2023-02-14 07:39:46 +11:00
parent cf125456d8
commit 071696b397
No known key found for this signature in database
GPG Key ID: 0F1C4A096E857E49
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { useRemoteCall } from "@hooks/RemoteCall";
import { getUserWebauthnDevices } from "@services/UserWebauthnDevices";
export function useUserWebauthnDevices() {
return useRemoteCall(getUserWebauthnDevices, []);
}