Skip to content

Commit 6cadc97

Browse files
committed
chore: fix build error
1 parent 416f967 commit 6cadc97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Appwrite/Models/Document.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Dictionary<string, object> data
5555
createdAt: map["$createdAt"].ToString(),
5656
updatedAt: map["$updatedAt"].ToString(),
5757
permissions: ((JArray)map["$permissions"]).ToObject<List<string>>(),
58-
, data: map
58+
data: map
5959
);
6060

6161
public Dictionary<string, object?> ToMap() => new Dictionary<string, object?>()

Appwrite/Models/Preferences.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Dictionary<string, object> data
1919
}
2020

2121
public static Preferences From(Dictionary<string, object> map) => new Preferences(
22-
, data: map
22+
data: map
2323
);
2424

2525
public Dictionary<string, object?> ToMap() => new Dictionary<string, object?>()

0 commit comments

Comments
 (0)