File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
import { useEffect } from 'react' ;
8
- import gitpodIcon from '../icons/gitpod.svg' ;
8
+ import gitpodIconUA from '../icons/gitpod-ua .svg' ;
9
9
10
10
export enum StartPhase {
11
11
Checking = 0 ,
@@ -87,7 +87,7 @@ export function StartPage(props: StartPageProps) {
87
87
return < div className = "w-screen h-screen align-middle" >
88
88
< div className = "flex flex-col mx-auto items-center text-center h-screen" >
89
89
< div className = "h-1/3" > </ div >
90
- < img src = { gitpodIcon } alt = "Gitpod's logo" className = { `h-16 flex-shrink-0 ${ ( error || phase === StartPhase . Stopped || phase === StartPhase . IdeReady ) ? '' : 'animate-bounce' } ` } />
90
+ < img src = { gitpodIconUA } alt = "Gitpod's logo" className = { `h-16 flex-shrink-0 ${ ( error || phase === StartPhase . Stopped || phase === StartPhase . IdeReady ) ? '' : 'animate-bounce' } ` } />
91
91
< h3 className = "mt-8 text-xl" > { title } </ h3 >
92
92
{ typeof ( phase ) === 'number' && phase < StartPhase . IdeReady && < ProgressBar phase = { phase } error = { ! ! error } /> }
93
93
{ error && < StartError error = { error } /> }
You can’t perform that action at this time.
0 commit comments