Skip to content

Commit 81853d2

Browse files
committed
fix(login): Update import path for LoginViewProps to use new IPC types
- Changed the import statement for LoginViewProps from '@renderer/types' to 'src/preload/ipc-types' to reflect the updated file structure.
1 parent 6a8a1c2 commit 81853d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/renderer/src/views/LoginView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState } from 'react'
22
import { useAuth } from '../contexts/AuthContext'
33
import { HelpModal } from '../components/HelpModal'
4-
import { LoginViewProps } from '@renderer/types'
4+
import { LoginViewProps } from 'src/preload/ipc-types'
55

66
export const LoginView: React.FC<LoginViewProps> = ({ toggleTheme, isDarkMode }) => {
77
const { token, setToken, authStatus, authErrorMsg, handleLogin } = useAuth()

0 commit comments

Comments
 (0)