@@ -18,19 +18,22 @@ import {
1818 Squares2X2Icon ,
1919 UsersIcon ,
2020} from "@heroicons/react/20/solid" ;
21- import { useNavigation , useMatches } from "@remix-run/react" ;
21+ import { useMatches , useNavigation } from "@remix-run/react" ;
2222import { useEffect , useRef , useState , type ReactNode } from "react" ;
2323import simplur from "simplur" ;
24- import { AISparkleIcon } from "~/assets/icons/AISparkleIcon" ;
2524import { RunsIconExtraSmall } from "~/assets/icons/RunsIcon" ;
2625import { TaskIconSmall } from "~/assets/icons/TaskIcon" ;
2726import { WaitpointTokenIcon } from "~/assets/icons/WaitpointTokenIcon" ;
27+ import { KapaChat } from "~/components/KapaChat" ;
2828import { Avatar } from "~/components/primitives/Avatar" ;
2929import { type MatchedEnvironment } from "~/hooks/useEnvironment" ;
30+ import { useFeatures } from "~/hooks/useFeatures" ;
3031import { type MatchedOrganization } from "~/hooks/useOrganizations" ;
3132import { type MatchedProject } from "~/hooks/useProject" ;
33+ import { useTypedMatchesData } from "~/hooks/useTypedMatchData" ;
3234import { useHasAdminAccess } from "~/hooks/useUser" ;
3335import { type User } from "~/models/user.server" ;
36+ import { type loader } from "~/root" ;
3437import { useCurrentPlan } from "~/routes/_app.orgs.$organizationSlug/route" ;
3538import { type FeedbackType } from "~/routes/resources.feedback" ;
3639import { IncidentStatusPanel } from "~/routes/resources.incidents" ;
@@ -83,10 +86,6 @@ import { HelpAndFeedback } from "./HelpAndFeedbackPopover";
8386import { SideMenuHeader } from "./SideMenuHeader" ;
8487import { SideMenuItem } from "./SideMenuItem" ;
8588import { SideMenuSection } from "./SideMenuSection" ;
86- import { useFeatures } from "~/hooks/useFeatures" ;
87- import { useTypedMatchesData } from "~/hooks/useTypedMatchData" ;
88- import { type loader } from "~/root" ;
89- import { KapaChat } from "~/components/KapaChat" ;
9089
9190type SideMenuUser = Pick < User , "email" | "admin" > & { isImpersonating : boolean } ;
9291export type SideMenuProject = Pick <
0 commit comments