@@ -29,7 +29,7 @@ import { HeadersSync } from '@/components/headerssync/headerssync';
2929import { Info , LoupeBlue } from '@/components/icon' ;
3030import { GuidedContent , GuideWrapper , Header , Main } from '@/components/layout' ;
3131import { Spinner } from '@/components/spinner/Spinner' ;
32- import { Status } from '@/components/status/status ' ;
32+ import { Message } from '@/components/message/message ' ;
3333import { useLoad , useSubscribe , useSync } from '@/hooks/api' ;
3434import { useDebounce } from '@/hooks/debounce' ;
3535import { HideAmountsButton } from '@/components/hideamountsbutton/hideamountsbutton' ;
@@ -273,13 +273,19 @@ const RemountAccount = ({
273273 < Main >
274274 < ContentWrapper >
275275 < GlobalBanners code = { code } devices = { devices } />
276- < Status className = { style . status } hidden = { status === undefined || ! status . offlineError } type = "error" >
276+ < Message
277+ className = { style . status }
278+ hidden = { status === undefined || ! status . offlineError }
279+ type = "error" >
277280 { offlineErrorTextLines . join ( '\n' ) }
278- </ Status >
279- < Status className = { style . status } hidden = { status === undefined || status . synced || ! ! status . offlineError } type = "info" >
281+ </ Message >
282+ < Message
283+ className = { style . status }
284+ hidden = { status === undefined || status . synced || ! ! status . offlineError }
285+ type = "info" >
280286 { t ( 'account.initializing' ) }
281287 { notSyncedText }
282- </ Status >
288+ </ Message >
283289 </ ContentWrapper >
284290 < Dialog open = { insured && uncoveredFunds . length !== 0 } medium title = { t ( 'account.warning' ) } onClose = { ( ) => setUncoveredFunds ( [ ] ) } >
285291 < MultilineMarkup tagName = "p" markup = { t ( 'account.uncoveredFunds' , {
0 commit comments