File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed 
frontend/components/Weather/WeatherTrackRubbered Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ export const defaultDashboard: DashboardLayout = {
6565      layout : { 
6666        x : 1000 , 
6767        y : 1000 , 
68-         width : 150 , 
69-         height : 330 , 
68+         width : 160 , 
69+         height : 380 , 
7070      } , 
7171    } , 
7272    { 
Original file line number Diff line number Diff line change 11import  React  from  'react' ; 
2- import  {  Path  }  from  '@phosphor-icons/react' ; 
2+ import  {  PathIcon  }  from  '@phosphor-icons/react' ; 
3+ 
34interface  Props  { 
45  trackRubbered : string  |  undefined ; 
56} 
67
78export  const  WeatherTrackRubbered : React . FC < Props >  =  ( {  trackRubbered } )  =>  { 
89  return  ( 
910    < div  className = "bg-slate-800/70 p-2 rounded-sm" > 
10-     < div  className = "flex flex-row items-center gap-6 " > 
11-       < span  className = "text-m text-gray-400 mr-1" > < Path  /> </ span > 
12-       < span  className = "text-sm" > { trackRubbered  ??  'N/A' } </ span > 
11+     < div  className = "flex flex-row items-center gap-2 " > 
12+       < span  className = "text-m text-gray-400 mr-1" > < PathIcon  /> </ span > 
13+       < span  className = "text-sm capitalize " > { trackRubbered  ??  'N/A' } </ span > 
1314    </ div > 
1415    </ div > 
1516  ) ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments