Skip to content

Commit

Permalink
path fixes for build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronk-bixly committed May 5, 2022
1 parent 2e7b2bc commit 6e50cd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/common/rest/vezgo/list-accounts/index.ts
@@ -1,6 +1,6 @@
import { MethodMetadata } from '..';
import { Headers } from '../../helpers/axios';
import { useRestCall } from '../../helpers/rest-calls';
import { MethodMetadata, Parameter } from '../..';
import { Headers } from '../../../helpers/axios';
import { useRestCall } from '../../../helpers/rest-calls';

const path = 'vezgo-accounts/:userId';

Expand Down
6 changes: 3 additions & 3 deletions src/common/rest/vezgo/list-transactions/index.ts
@@ -1,6 +1,6 @@
import { MethodMetadata } from '..';
import { Headers } from '../../helpers/axios';
import { useRestCall } from '../../helpers/rest-calls';
import { MethodMetadata, Parameter } from '../..';
import { Headers } from '../../../helpers/axios';
import { useRestCall } from '../../../helpers/rest-calls';

const path =
'vezgo-transactions/:accountId/?pageNbr=:pageNbr&pageSize=:pageSize';
Expand Down

0 comments on commit 6e50cd2

Please sign in to comment.