Prettier format pending files
This commit is contained in:
parent
8c4d0ef0c2
commit
528fd3c29e
4 changed files with 5 additions and 4 deletions
|
|
@ -87,7 +87,9 @@ export default function ArmSwitcher() {
|
|||
className="group relative h-12 w-12 sm:h-14 sm:w-14 flex items-center justify-center rounded-lg hover:scale-125 transition-transform duration-200"
|
||||
title={arm.name}
|
||||
>
|
||||
<div className={`absolute inset-0 rounded-lg ${arm.bgColor} opacity-0 group-hover:opacity-100 transition-opacity duration-200`} />
|
||||
<div
|
||||
className={`absolute inset-0 rounded-lg ${arm.bgColor} opacity-0 group-hover:opacity-100 transition-opacity duration-200`}
|
||||
/>
|
||||
|
||||
<img
|
||||
src={LOGO_URLS[arm.id]}
|
||||
|
|
|
|||
|
|
@ -149,7 +149,6 @@ export default function LoadingScreen({
|
|||
Please wait while we prepare your experience
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ interface PageTransitionProps {
|
|||
}
|
||||
|
||||
const getArmConfig = (
|
||||
pathname: string
|
||||
pathname: string,
|
||||
): { message: string; accentColor: string } => {
|
||||
if (pathname.includes("/labs") || pathname.includes("/research")) {
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ export default function DevLinkProfile() {
|
|||
<Badge
|
||||
variant="outline"
|
||||
className={`capitalize ${getExperienceColor(
|
||||
profile.experience_level
|
||||
profile.experience_level,
|
||||
)}`}
|
||||
>
|
||||
{profile.experience_level} Developer
|
||||
|
|
|
|||
Loading…
Reference in a new issue