Merge branch 'dev' into dev

This commit is contained in:
Ryuhane 2025-10-01 14:00:06 -07:00 committed by GitHub
commit 9973d51245
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
89 changed files with 5030 additions and 120 deletions

View file

@ -1,6 +1,6 @@
"use client";
import { useInView } from "framer-motion";
import { useInView } from "motion/react";
import { Manrope } from "next/font/google";
import { useEffect, useMemo, useReducer, useRef } from "react";
import { RoughNotation, RoughNotationGroup } from "react-rough-notation";
@ -85,7 +85,6 @@ const initialState: HighlightState = {
export function AnimatedEmptyState() {
const ref = useRef<HTMLDivElement>(null);
const isInView = useInView(ref);
const { state: sidebarState } = useSidebar();
const [{ shouldShowHighlight, layoutStable }, dispatch] = useReducer(
highlightReducer,
initialState