File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
client/src/components/common
server/src/core/page/services Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { Group , Text } from "@mantine/core" ;
22import { CustomAvatar } from "@/components/ui/custom-avatar.tsx" ;
33import React from "react" ;
4- import { User } from "server/dist/database /types/entity .types" ;
4+ import { IUser } from '@/features/user /types/user .types.ts' ;
55
66interface UserInfoProps {
7- user : User ;
7+ user : Partial < IUser > ;
88 size ?: string ;
99}
1010export function UserInfo ( { user, size } : UserInfoProps ) {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export class TrashCleanupService {
1919 @Interval ( 'trash-cleanup' , 24 * 60 * 60 * 1000 ) // every 24 hours
2020 async cleanupOldTrash ( ) {
2121 try {
22- this . logger . log ( 'Starting trash cleanup job' ) ;
22+ this . logger . debug ( 'Starting trash cleanup job' ) ;
2323
2424 const retentionDate = new Date ( ) ;
2525 retentionDate . setDate ( retentionDate . getDate ( ) - this . RETENTION_DAYS ) ;
You can’t perform that action at this time.
0 commit comments