Skip to content

Commit 6868a0d

Browse files
authored
[Human App] fix: invalid imports of auth schema (#2842)
1 parent b5886e3 commit 6868a0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/apps/human-app/frontend/src/auth-web3/web3-auth-context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useState, createContext, useEffect } from 'react';
33
import { jwtDecode } from 'jwt-decode';
44
import { z } from 'zod';
55
import { useQueryClient } from '@tanstack/react-query';
6-
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/sign-in';
6+
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/types';
77
import { browserAuthProvider } from '@/shared/helpers/browser-auth-provider';
88
import { useModalStore } from '@/components/ui/modal/modal.store';
99

packages/apps/human-app/frontend/src/auth/auth-context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useState, createContext, useEffect } from 'react';
33
import { jwtDecode } from 'jwt-decode';
44
import { z } from 'zod';
55
import { useQueryClient } from '@tanstack/react-query';
6-
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/sign-in';
6+
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/types';
77
import { browserAuthProvider } from '@/shared/helpers/browser-auth-provider';
88
import { useModalStore } from '@/components/ui/modal/modal.store';
99

packages/apps/human-app/frontend/src/shared/types/browser-auth-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/sign-in';
1+
import type { SignInSuccessResponse } from '@/api/services/worker/sign-in/types';
22
import type { Web3UserData } from '@/auth-web3/web3-auth-context';
33
import type { UserData } from '@/auth/auth-context';
44

0 commit comments

Comments
 (0)