Skip to content

Commit ca83712

Browse files
committed
cleanup
1 parent 39550fe commit ca83712

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/client/src/components/common/user-info.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Group, Text } from "@mantine/core";
22
import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
33
import React from "react";
4-
import { User } from "server/dist/database/types/entity.types";
4+
import { IUser } from '@/features/user/types/user.types.ts';
55

66
interface UserInfoProps {
7-
user: User;
7+
user: Partial<IUser>;
88
size?: string;
99
}
1010
export function UserInfo({ user, size }: UserInfoProps) {

apps/server/src/core/page/services/trash-cleanup.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)