Skip to content

Commit af8625a

Browse files
committed
Allow playerData to be null in formattedSaveFileType
Updated the formattedSaveFileType type to permit playerData to be null, providing flexibility for cases where player data may be unavailable.
1 parent fb613e0 commit af8625a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/types/displayDataTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export type formattedSaveFileType = {
22
farmName?: string;
3-
playerData: fullPlayerDataType;
3+
playerData: fullPlayerDataType | null;
44
farmhandData: fullPlayerDataType[];
55
}
66

0 commit comments

Comments
 (0)