Skip to content
Merged
Prev Previous commit
Next Next commit
Merge staging into fix/env-vars-new-exec - resolve skeleton loading c…
…onflict
  • Loading branch information
icecrasher321 committed Dec 4, 2025
commit 4679ed3206916abec35eef68110f28c3bd3d9e44
Original file line number Diff line number Diff line change
Expand Up @@ -505,12 +505,24 @@ export function EnvironmentVariables({ registerBeforeLeaveHandler }: Environment
{isLoading ? (
<>
<div className='flex flex-col gap-[8px]'>
<Skeleton className='h-[14px] w-[70px]' />
<Skeleton className='h-9 rounded-[6px]' />
<Skeleton className='h-5 w-[70px]' />
<div className='text-[13px] text-[var(--text-muted)]'>
<Skeleton className='h-5 w-[160px]' />
</div>
</div>
<div className='flex flex-col gap-[8px]'>
<Skeleton className='h-[14px] w-[55px]' />
<Skeleton className='h-9 rounded-[6px]' />
<Skeleton className='h-5 w-[55px]' />
{Array.from({ length: 2 }, (_, i) => (
<div key={`personal-${i}`} className={GRID_COLS}>
<Skeleton className='h-9 rounded-[6px]' />
<div />
<Skeleton className='h-9 rounded-[6px]' />
<div className='ml-[8px] flex items-center gap-0'>
<Skeleton className='h-9 w-9 rounded-[6px]' />
<Skeleton className='h-9 w-9 rounded-[6px]' />
</div>
</div>
))}
</div>
</>
) : (
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.