fix: error on admin share management page if a share was created by an anonymous user

This commit is contained in:
Elias Schneider
2024-05-04 14:45:08 +03:00
parent 908d6e298f
commit c999df15e0
2 changed files with 9 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ export type Share = {
id: string;
name?: string;
files: any;
creator: User;
creator?: User;
description?: string;
expiration: Date;
size: number;