@@ -9,7 +9,6 @@ import { FaRegUserCircle } from 'react-icons/fa'
9
9
import { LLMConfig } from 'electron/main/electron-store/storeConfig'
10
10
import AddContextFiltersModal from './AddContextFiltersModal'
11
11
import PromptSuggestion from './ChatPrompts'
12
-
13
12
import LoadingDots from '@/utils/animations'
14
13
import '../../styles/chat.css'
15
14
import { Chat , ChatFilters , ReorChatMessage } from './types'
@@ -108,7 +107,7 @@ const ChatMessages: React.FC<ChatMessagesProps> = ({
108
107
{ message . role === 'user' ? (
109
108
< FaRegUserCircle size = { 22 } />
110
109
) : (
111
- < img src = "/src/assets/reor-logo.svg " style = { { width : '22px' , height : '22px' } } alt = "ReorImage" />
110
+ < img src = "icon.png " style = { { width : '22px' , height : '22px' } } alt = "ReorImage" />
112
111
) }
113
112
</ div >
114
113
< div className = "w-full flex-col gap-1" >
@@ -148,7 +147,7 @@ const ChatMessages: React.FC<ChatMessagesProps> = ({
148
147
< div className = "relative flex w-full flex-col items-center" >
149
148
< div className = "relative flex size-full flex-col text-center lg:top-10 lg:max-w-2xl" >
150
149
< div className = "flex size-full justify-center" >
151
- < img src = "/src/assets/reor-logo.svg " style = { { width : '64px' , height : '64px' } } alt = "ReorImage" />
150
+ < img src = "icon.png " style = { { width : '64px' , height : '64px' } } alt = "ReorImage" />
152
151
</ div >
153
152
< h1 className = "mb-10 text-[28px] text-gray-300" >
154
153
Welcome to your AI-powered assistant! Start a conversation with your second brain!
@@ -211,7 +210,7 @@ const ChatMessages: React.FC<ChatMessagesProps> = ({
211
210
212
211
{ loadAnimation && (
213
212
< div className = "relative left-4 ml-1 mt-4 flex w-full max-w-3xl items-start gap-6" >
214
- < img src = "/src/assets/reor-logo.svg " style = { { width : '22px' , height : '22px' } } alt = "ReorImage" />
213
+ < img src = "icon.png " style = { { width : '22px' , height : '22px' } } alt = "ReorImage" />
215
214
< LoadingDots />
216
215
</ div >
217
216
) }
0 commit comments