chore: lint using react-doctor, update translations, dynamic imports

This commit is contained in:
Amruth Pillai
2026-05-21 09:56:26 +02:00
parent 3596102c63
commit 39e88dd365
208 changed files with 5876 additions and 4778 deletions
@@ -13,7 +13,7 @@ import {
WarningIcon,
} from "@phosphor-icons/react";
import { Link } from "@tanstack/react-router";
import { AnimatePresence, motion } from "motion/react";
import { AnimatePresence, m } from "motion/react";
import { Avatar, AvatarFallback, AvatarImage } from "@reactive-resume/ui/components/avatar";
import { BrandIcon } from "@reactive-resume/ui/components/brand-icon";
import {
@@ -185,7 +185,7 @@ export function DashboardSidebar() {
<AnimatePresence>
{state === "expanded" && (
<motion.div
<m.div
key="copyright"
className="will-change-[transform,opacity]"
initial={{ y: 12, opacity: 0 }}
@@ -194,7 +194,7 @@ export function DashboardSidebar() {
transition={{ duration: 0.2, ease: "easeOut" }}
>
<Copyright className="wrap-break-word shrink-0 whitespace-normal p-2" />
</motion.div>
</m.div>
)}
</AnimatePresence>
</SidebarFooter>