Midday / apps /dashboard /src /hooks /use-metrics-customize.ts
Jules
Final deployment with all fixes and verified content
c09f67c
"use client";
import { parseAsBoolean, useQueryState } from "nuqs";
export function useMetricsCustomize() {
const [isCustomizing, setIsCustomizing] = useQueryState(
"customizeMetrics",
parseAsBoolean.withDefault(false),
);
return {
isCustomizing: isCustomizing ?? false,
setIsCustomizing: (value: boolean) => setIsCustomizing(value || null),
};
}