Skip to content

Commit a7d7c53

Browse files
committed
remove logs
1 parent aed7908 commit a7d7c53

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

docs/app/components/ui/Sparkles.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ export const SparklesCore = (props: ParticlesProps) => {
3939

4040
const particlesLoaded = async (container?: Container) => {
4141
if (container) {
42-
console.log(container)
4342
controls.start({
4443
opacity: 1,
4544
transition: {

src/vite/plugin.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ export const reactRouterDevTools: (args?: ReactRouterViteConfig) => Plugin[] = (
8080
const isRoute =
8181
id.includes(`${appDirName}/root`) ||
8282
flatRoutes.some((route) => id.endsWith(route.file.replace(/^\.\//, "").replace(/^\.\.\//, "")))
83-
// biome-ignore lint/suspicious/noConsole: <explanation>
84-
console.log("isRoute", isRoute, id, flatRoutes.length, flatRoutes[0]?.file)
83+
8584
if (!isRoute) {
8685
return
8786
}

0 commit comments

Comments
 (0)