ui: fix build due to wrong import path

This commit is contained in:
Matthew Penner 2021-07-18 13:36:54 -06:00
parent 08c780c388
commit 30f09a4098

View file

@ -1,6 +1,6 @@
import http from '@/api/http'; import http from '@/api/http';
import { LoginResponse } from '@/api/auth/login'; import { LoginResponse } from '@/api/auth/login';
import { base64Decode, bufferDecode, bufferEncode, decodeCredentials } from '@/api/account/webauthn/registerKey'; import { base64Decode, bufferDecode, bufferEncode, decodeCredentials } from '@/api/account/webauthn/registerWebauthnKey';
export default (token: string, publicKey: PublicKeyCredentialRequestOptions): Promise<LoginResponse> => { export default (token: string, publicKey: PublicKeyCredentialRequestOptions): Promise<LoginResponse> => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {