Skip to content

Commit 08f3251

Browse files
committed
fix: remove wrong project durations object
1 parent 26ac60d commit 08f3251

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/analytics/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type UserAnalytics = Prettify<{
1414
active_days: number;
1515
}>;
1616

17-
export type UserProjectAnalytics = UserAnalytics & {
17+
export type UserProjectAnalytics = Omit<UserAnalytics, "project_durations"> & {
1818
files_durations: Duration;
1919
};
2020

0 commit comments

Comments
 (0)