File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ src-tauri/windows/msix-staging/AppxManifest.xml
3737coverage /
3838
3939# Environment
40+ ai-memory /
4041.env
4142.env.local
4243.env.production
Original file line number Diff line number Diff line change @@ -562,7 +562,7 @@ export default function LlmInsights() {
562562 < select
563563 value = { range }
564564 onChange = { ( e ) => setRange ( e . target . value as AnalysisRange ) }
565- className = "ui-field text-xs h-8 py-0 pr-7"
565+ className = "ui-field text-xs h-9 min-h-9 py-0 leading-5 pr-7"
566566 disabled = { loading }
567567 >
568568 { (
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import type {
1414 VsCodeStatsSummary ,
1515} from "@/types" ;
1616import * as api from "@/services/tauriApi" ;
17+ import { todayString } from "@/utils/format" ;
1718
1819export type PeriodMode = "day" | "week" | "month" ;
1920
@@ -71,7 +72,7 @@ interface StatsState {
7172 fetchVsCodeStatsForRange : ( startDate : string , endDate : string ) => Promise < void > ;
7273}
7374
74- const todayStr = ( ) => new Date ( ) . toISOString ( ) . slice ( 0 , 10 ) ;
75+ const todayStr = todayString ;
7576
7677export const useStatsStore = create < StatsState > ( ( set , get ) => ( {
7778 todayTotals : [ ] ,
You can’t perform that action at this time.
0 commit comments