Remove unused directives
All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 5s

This commit is contained in:
2025-12-10 12:35:34 -05:00
parent f36be9a0f8
commit 59f8809788
2 changed files with 0 additions and 4 deletions

View File

@@ -40,7 +40,6 @@ export const Loader = ({ minDuration = 750, fadeMs = 600 }) => {
(styles, show) =>
show && (
<div>
{/* @ts-expect-error children not typed bug */}
<animated.div
style={{
...styles,
@@ -70,11 +69,9 @@ export const Loader = ({ minDuration = 750, fadeMs = 600 }) => {
overflow: "hidden",
}}
>
{/* @ts-expect-error children not typed bug */}
<animated.div
style={{ ...barStyles, height: "100%", background: "#fff" }}
>
{/* @ts-expect-error children not typed bug */}
<animated.div className="text-[#1b1b1b] text-xs flex h-full items-center justify-center">
{barStyles.width.to((w) => {
const p = parseInt(w) || 0;

View File

@@ -82,7 +82,6 @@ export const MobileMenu = ({
className="stroke-[0.75] stroke-black"
/>
</AnimatedButton>
{/* @ts-expect-error children not typed bug */}
<animated.div
style={{
transform: slideProps.x.to((x) => `translateX(${x}%)`),