Skip to content

Commit f25ccf6

Browse files
fmt
1 parent 9664ef3 commit f25ccf6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/ui/src/components/ui/progressive-blur.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ export function ProgressiveBlur({
3939
(pos, posIndex) => `rgba(255, 255, 255, ${posIndex === 1 || posIndex === 2 ? 1 : 0}) ${pos * 100}%`,
4040
);
4141

42-
const gradient = `linear-gradient(${angle}deg, ${gradientStops.join(
43-
", ",
44-
)
45-
})`;
42+
const gradient = `linear-gradient(${angle}deg, ${
43+
gradientStops.join(
44+
", ",
45+
)
46+
})`;
4647

4748
return (
4849
<motion.div

0 commit comments

Comments
 (0)