Skip to content

Commit 55473f6

Browse files
committed
Fix indent issue affecting last draft fetching
1 parent 444859b commit 55473f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shared/PostEditor/PostEditorModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ struct PostEditorModel {
2424
let coordinator = LocalStorageManager.persistentContainer.persistentStoreCoordinator
2525
guard let postManagedObjectID = coordinator.managedObjectID(forURIRepresentation: postURL) else { return nil }
2626
guard let post = LocalStorageManager.persistentContainer.viewContext.object(
27-
with: postManagedObjectID
27+
with: postManagedObjectID
2828
) as? WFAPost else { return nil }
2929

3030
return post

0 commit comments

Comments
 (0)