Explore icons
diff --git a/web/src/components/magicui/number-ticker.tsx b/web/src/components/magicui/number-ticker.tsx
index a4efe6e0..39158e5b 100644
--- a/web/src/components/magicui/number-ticker.tsx
+++ b/web/src/components/magicui/number-ticker.tsx
@@ -26,7 +26,7 @@ export function NumberTicker({
const motionValue = useMotionValue(direction === "down" ? value : startValue);
const springValue = useSpring(motionValue, {
damping: 30,
- stiffness: 100,
+ stiffness: 200,
});
const isInView = useInView(ref, { once: true, margin: "0px" });
@@ -43,10 +43,7 @@ export function NumberTicker({
() =>
springValue.on("change", (latest) => {
if (ref.current) {
- ref.current.textContent = Intl.NumberFormat("en-US", {
- minimumFractionDigits: decimalPlaces,
- maximumFractionDigits: decimalPlaces,
- }).format(Number(latest.toFixed(decimalPlaces)));
+ ref.current.textContent = Number(latest.toFixed(decimalPlaces)).toString();
}
}),
[springValue, decimalPlaces],
diff --git a/web/src/components/recently-added-icons.tsx b/web/src/components/recently-added-icons.tsx
index c5e76eec..dc765f4a 100644
--- a/web/src/components/recently-added-icons.tsx
+++ b/web/src/components/recently-added-icons.tsx
@@ -32,7 +32,7 @@ export function RecentlyAddedIcons({ icons }: { icons: IconWithName[] }) {